forked from InstituteforDiseaseModeling/vis-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.74 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
# import sys
from setuptools import setup, find_packages
requires = ['czml>=0.3.3']
long_description = "The Institute for Disease Modeling (IDM) develops complex "\
"software for disease modeling. The primary software, Epidemiological "\
"MODeling software (EMOD), helps determine the combination of health "\
"policies and intervention strategies that can lead to disease "\
"eradication. The effective use of EMOD requires analysis of simulation "\
"output. Vis-Tools is a collection of software tools that aids in the "\
"visualization of geospatial simulation data."
setup(name='vis-tools',
version='1.4',
description='Python preprocessing classes for advanced visualization',
long_description=long_description,
url='https://github.com/InstituteforDiseaseModeling/vis-tools',
author='Bryan Ressler',
author_email='bressler@idmod.org',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: JavaScript',
'Topic :: Scientific/Engineering :: Visualization'
],
entry_points={
'console_scripts': [
'survey=vis_tools.Survey:main'
]
},
install_requires=requires,
include_package_data=True,
package_data={'': ['defaultvisset.json']},
keywords='vistools vis-tools vis_tools preprocessing visualization ' +
'idm emod dtk',
packages=find_packages(exclude=['test']),
python_requires='>=3.6',
zip_safe=False)