-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 1 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
tests_require = ["transforms3d", "sympy"]
docs_require = ["ipython"]
setup(name="fluxer",
version="0.1.0",
description=("Tools to process flux (eddy covariance) data"
"collected by CEOS."),
long_description=readme(),
author="Sebastian Luque",
author_email="sebastian.luque@umanitoba.ca",
url="https://github.com/UofM-CEOS/flux_capacitor",
packages=["fluxer", "fluxer.eddycov", "fluxer.underway"],
scripts=["pCO2/pCO2_rosette.py", "pCO2/subset_bottles.py",
"pCO2/pCO2_bottle_match.awk"],
test_suite="fluxer.tests",
tests_require=tests_require,
extras_require={
"tests": tests_require,
"docs": docs_require
},
entry_points={
"console_scripts": ["get_fluxes = fluxer.eddycov.__main__:main",
"get_pCO2 = fluxer.underway.__main__:main"]
}
)