-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 877 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 877 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
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
install_dependencies = [
'Click',
'colorama',
'sexpdata',
'z3-solver',
"rpy2",
'sqlparse',
]
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
'sqlparse',
]
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',
],
},
)
os.system("conda install -c r r-dplyr r-dbplyr r-tidyr r-stringr")