-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 800 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
from setuptools import setup, find_packages
setup(name='dyna',
version='0.9',
description='',
author='Tim Vieira',
install_requires=[
'arsenal @ git+https://github.com/timvieira/arsenal',
'semirings @ git+https://github.com/timvieira/semirings',
'orderedset',
'frozendict',
'lark-parser',
'ansi2html',
'z3-solver',
'sympy',
'graphviz',
'rich',
'IPython',
'svgling',
'pandas',
'ipywidgets',
# -------------------------------------------------------------------
# development
'coveragepy',
'pytest',
'pytest-cov',
'pytest-timeout',
],
packages = find_packages(),
)