-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (30 loc) · 974 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
from hectare import __version__
setuptools.setup(
name="hectare",
version=__version__,
author="Jan Marjanovic (DESY)",
author_email="jan.marjanovic@desy.de",
description="VHDL generator from SystemRDL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://techlab.desy.de",
packages=setuptools.find_packages(include=['hectare', 'hectare.*']),
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'hectare=hectare.hectare:main',
],
},
install_requires=required,
python_requires='>=3.5',
keywords='systemrdl fpga vhdl axi registers',
)