-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 754 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 754 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
26
27
28
29
30
31
from setuptools import setup, find_packages
install_dependencies = [
'Click',
'colorama',
'sexpdata',
'z3-solver'
]
develop_dependencies = [
'mypy', # for type checking
'rpy2', # for Morpheus. TODO: This should really belong to the client package
'lark-parser', # for parsing
'sphinx', # for documentation generation
]
setup(
name='tyrell',
version='0.1dev',
packages=find_packages(),
license='LICENSE.txt',
description='Deduction-based synthesis framework',
install_requires=install_dependencies,
extras_require={
'dev': develop_dependencies
},
entry_points={
'console_scripts': [
'parse-tyrell-spec=tyrell.parse_tyrell_spec:cli',
],
},
)