This repository was archived by the owner on Apr 28, 2019. It is now read-only.
forked from USF-COT/GDAM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.27 KB
/
setup.py
File metadata and controls
48 lines (39 loc) · 1.27 KB
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
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
def version():
with open('VERSION') as f:
return f.read().strip()
reqs = [line.strip() for line in open('requirements.txt') if not line.startswith('#')]
setup(
name='gdam',
version=version(),
description='Watches a directory for new *db flight/science files and '
'inserts the data into a MongoDB instance and publishes the '
'data to a ZeroMQ socket.',
long_description=readme(),
license='MIT',
author='Kyle Wilcox',
author_email='kyle@axiomdatascience.com',
install_requires=reqs,
url='https://github.com/axiom-data-science/GDAM',
packages=['gdam'],
entry_points = {
'console_scripts': [
'gdam-cli=gdam.cli:main',
'gdam2nc=gdam.nc:main',
'nc2ftp=gdam.ftp:main'
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'
],
)