-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (34 loc) · 1.2 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
from setuptools import setup
reqs = [line.strip() for line in open('requirements.txt')]
def readme():
with open('README.md') as f:
return f.read()
kwargs = {
'name': 'colocate',
'author': 'OHW 2019 Team Co-Locators!!!',
'author_email': 'noreply@co-locators-ohw19.org',
'url': 'https://github.com/ioos/colocate',
'description': 'A utility for aggregating co-located ERDDAP datasets in space and time. Originally developed during OceanHackWeek 2019 and migrated to U.S. IOOS for maintenance and further development.',
'long_description': 'readme()',
'entry_points': {
'console_scripts': [
'erddap-co-locate=colocate.run:main',
]
},
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: GIS'
],
'packages': ['colocate'],
'package_data': {
},
'version': '0.1.0',
}
kwargs['install_requires'] = reqs
setup(**kwargs)