import setuptools with open("README.md", "r") as fh: long_description = fh.read() from pythondata_cpu_libresoc import version_str setuptools.setup( name="pythondata-cpu-libresoc", version=version_str, author="LiteX Authors", author_email="litex@googlegroups.com", description="""\ Python module containing vhdl files for LibreSoC cpu.""", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/litex-hub/pythondata-cpu-libresoc", classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved", "Operating System :: OS Independent", ], python_requires='>=3.5', zip_safe=False, packages=setuptools.find_packages(), package_data={ 'cpu_libresoc': ['cpu_libresoc/hdl/**'], }, include_package_data=True, project_urls={ "Bug Tracker": "https://gitlab.raptorengineering.com/kestrel-collaboration/kestrel-litex/pythondata-cpu-libresoc/-/issues", "Source Code": "https://gitlab.raptorengineering.com/kestrel-collaboration/kestrel-litex/pythondata-cpu-libresoc", }, )