-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (28 loc) · 892 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
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
__author__ = 'Kiran Karra, Tom Mellan'
__email__ = '[email protected], [email protected]'
__version__ = '0.1.0'
install_requires = ['numpy',
'pandas',
'numpyro',
'jax',
]
setuptools.setup(
name="scenario_generator",
version=__version__,
description='Scenario generator for understanding Filecoin dynamics',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/protocol/scenario-generator',
author=__author__,
author_email=__email__,
license='MIT License',
python_requires='>=3',
packages=['scenario_generator'],
install_requires=install_requires,
zip_safe=False
)