-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (46 loc) · 1.47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
import os
import venv
import sys
from setuptools import setup, find_packages
from io import open
from pathlib import Path
ROOT = Path(os.path.abspath(os.path.dirname(__file__)))
BIN = ROOT.joinpath('bin')
SCRIPTS = ROOT.joinpath('scripts')
is_win = (sys.platform == 'win32')
# Get the long description from the README file
with open(ROOT.joinpath('README.md'), encoding='utf-8') as f:
long_description = f.read()
f.close()
setup(
name='emod_scenarios',
version='2.2.0',
description='EMOD example scenarios',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://idmod.org/docs',
author='Institute for Disease Modeling',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research'
'Topic :: Software Development :: Build Tools',
'License :: Creative Commons BY-NC-SA 4.0',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
packages=[],
python_requires='>=3.6',
install_requires=[
'matplotlib',
'numpy',
'pandas',
'seaborn'
],
project_urls={
'Bug Reports': 'https://github.com/InstituteforDiseaseModeling/docs-emod-scenarios/issues',
'Source': 'https://github.com/InstituteforDiseaseModeling/docs-emod-scenarios',
}
)