blob: 6304a632b313925d3356bcb8590806007065356f [file]
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="v2x",
version="0.0.1",
entry_points={
"console_scripts": ["v2x=v2x.__main__:v2x"]
},
author="SymbiFlow Authors",
author_email="symbiflow@lists.librecores.org",
description="Python library for generating VPR architecture \
description files from Verilog models.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SymbiFlow/python-symbiflow-v2x",
packages=setuptools.find_packages(),
install_requires=[
'lxml',
'pyjson',
'vtr_xml_utils @ git+https://github.com/Symbiflow/vtr-xml-utils'
],
dependency_links=[
'https://github.com/Symbiflow/vtr-xml-utils/tarball/'
'master#egg=vtr-xml-utils-0.0.1'
],
setup_requires=["pytest-runner"],
tests_require=[
'pytest',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License",
"Operating System :: OS Independent",
],
)