-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 976 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 976 Bytes
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
REQUIREMENTS = f.read().strip().split('\n')
with open('VERSION') as f:
VERSION = f.read().strip()
with open('README.rst') as f:
README = f.read()
setup(
name='rootwater',
version=VERSION,
license='MIT',
description='Python package to estimate root water uptake (RWU) from rhizosphere soil moisture dynamics and some tools to handle sap flow measurements',
long_description=README,
url="https://github.com/cojacoo/rootwater",
author='Conrad Jackisch',
author_email='conrad.jackisch@tbt.tu-freiberg.de',
install_requires=REQUIREMENTS,
test_require=['nose'],
test_suite='nose.collector',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False
)