blob: 5d5f3ff7c190e858bcab17c74eea5849aff4e3f4 [file]
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="v2x",
version="0.0.1",
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'
],
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",
],
)