forked from smadelineth/Lyra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 661 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 661 Bytes
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
from setuptools import setup, find_packages
config = {
'name': 'Lyra',
'version': '0.1',
'author': 'Caterina Urban',
'author_email': 'caterina.urban@gmail.com',
'description': 'Static Program Analyzer for Python Data Science Applications',
'url': 'http://www.pm.inf.ethz.ch/research/lyra.html',
'license': 'MPL-2.0',
'packages': find_packages('src'),
'package_dir': {'': 'src'},
'entry_points': {
'console_scripts': [
'lyra = lyra.main:main',
]
},
'install_requires': [
'graphviz==0.7.1',
'z3',
],
'scripts': [],
}
setup(**config)