2020-04-29 12:55:04 +02:00
|
|
|
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",
|
2020-05-21 13:41:08 +02:00
|
|
|
packages=['prjxray', 'utils'],
|
2020-04-29 12:55:04 +02:00
|
|
|
classifiers=[
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"License :: OSI Approved :: ISC License",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
],
|
|
|
|
|
)
|