diff --git a/.gitignore b/.gitignore index eb75f580..b2007f31 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ run.*.ok __pycache__ *.pyc *.swp +*.egg-info diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..d420015b --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="prjxray", + version="0.0.1", + author="SymbiFlow Authors", + author_email="symbiflow@lists.librecores.org", + description="Project X-Ray libraries", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/SymbiFlow/prjxray", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: ISC License", + "Operating System :: OS Independent", + ], +)