-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 884 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
35
36
37
38
#!/usr/bin/env python3
from setuptools import find_packages, setup
requirements = [
"setuptools",
"PyYAML",
"IHex",
"yay_ast",
]
setup(
name='yay',
packages=find_packages(),
package_dir={'yay': 'yay'},
include_package_data=True,
package_data={
"yay": ["cpu_configurations/*.yml"],
},
entry_points={
"console_scripts": [
"yay=yay.__main__:main",
]
},
install_requires=requirements,
dependency_links=[
"git+https://github.com/narpfel/IHex.git@master#egg=IHex-0.1.4",
"git+https://github.com/narpfel/yay-ast.git@master#egg=yay_ast-3.6.1",
],
license="GPLv3",
zip_safe=True,
keywords='yay',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)