-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 1.06 KB
/
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
from setuptools import setup, find_packages
setup(
name='dagsim',
version='1.0.9',
packages=find_packages(),
url='https://github.com/uio-bmi/dagsim',
license='AGPL-3.0 License',
author='Ghadi S. Al Hajj',
author_email='[email protected]',
description='A framework and specification language for simulating data based on user-defined graphical models',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=['graphviz>=0.16',
'numpy>=1.20.2',
'pandas>=1.2.4',
'igraph>=0.9.6',
'pyyaml',
'ipython>=7.27.0'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'dagsim-quickstart = dagsim.utils.quickstart:main',
'dagsim = dagsim.utils.parser:main'
]
},
)