-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1005 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
import setuptools
#code inspired by:
# https://packaging.python.org/tutorials/packaging-projects/
with open("README.md", "r", encoding="utf-8") as fh:
entire_description = fh.read()
exec(open('src/legohdl/__version__.py').read())
setuptools.setup(
name="legohdl",
version=__version__,
author="Chase Ruskin",
author_email="[email protected]",
description="A complete HDL package manager and development tool",
long_description=entire_description,
long_description_content_type="text/markdown",
url="https://github.com/c-rus/legoHDL",
classifiers=[
"",
],
install_requires=[],
entry_points='''
[console_scripts]
legohdl=legohdl.legohdl:main
''',
package_dir={"": "src"},
package_data={"": ['data/icon.gif', 'data/demo.py', 'data/manual.txt', 'data/info.txt']},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
python_requires=">=3.5",
license_files=('LICENSE',),
)