-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (63 loc) · 2.15 KB
/
setup.py
File metadata and controls
65 lines (63 loc) · 2.15 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='ct_simulator',
version='0.2.0',
author='Andrei C. Rusu (andrei-rusu)',
description='A Python package that can simulate the effects of various contact tracing strategies on the spread of viruses.',
long_description=open('README.md','rt').read(),
long_description_content_type='text/markdown',
url='https://github.com/andrei-rusu/contact-tracing-model',
project_urls={
'Bug Tracker': 'https://github.com/andrei-rusu/contact-tracing-model/issues',
},
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
packages=find_packages(),
python_requires='>=3.9, <3.10',
install_requires=[
'matplotlib',
'numpy',
'networkx',
'scipy',
'tqdm',
'dill',
'pandas',
],
extras_require={
'draw': [
'ipython',
],
'draw_full': [
'ipython',
'pygraphviz', # used for graphviz layouts (requires graphviz to be installed)
'pyvis', # used for interactive visualizations with pyvis
'plotly', # used for interactive visualizations with plotly
'imageio', # used for saving animations
],
'control': [
'control_diffusion @ git+https://github.com/andrei-rusu/control-diffusion.git#egg=control_diffusion'
],
'control_learn': [
'control_diffusion @ git+https://github.com/andrei-rusu/control-diffusion.git#egg=control_diffusion[learn]'
],
'mcmc': [
'numpy==1.23.5', # Specific version for the pymc3 functionality
'arviz==0.14.0', # Specific version for the pymc3 functionality
'theano-pymc',
'pymc3',
],
},
entry_points={
'console_scripts': [
'run-tracing=ct_simulator.run_tracing:main',
],
},
)