forked from markmuetz/stormtracks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (54 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
import os
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from stormtracks.version import get_version
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='stormtracks',
version=get_version(),
description='Tropical Cyclone Detection and Tracking',
long_description=read('README.rst'),
author='Mark Muetzelfeldt',
author_email='[email protected]',
maintainer='Mark Muetzelfeldt',
maintainer_email='[email protected]',
packages=['stormtracks',
'stormtracks.utils',
'stormtracks.processing',
'stormtracks.analysis',
'stormtracks.installation',
'stormtracks.installation.scripts',
'stormtracks.installation.settings'],
scripts=[
'stormtracks/stormtracks-admin.py',
],
ext_modules=[Extension('stormtracks', ['src/cvort.c', 'src/cextrema.c'])],
install_requires=[
'pip',
'ipython',
'termcolor',
'argh',
],
package_data={'stormtracks.installation': [
'requirements/*.txt',
'classifiers/*.json',
'plots/*.json'
]},
url='https://github.com/markmuetz/stormtracks',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: C',
'Topic :: Scientific/Engineering :: Atmospheric Science',
],
keywords=['tropical cyclone track detection'],
)