-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (36 loc) · 1.25 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os import path
# Get the long description from DESCRIPTION.rst
with open(path.join(path.abspath(path.dirname(__file__)),
'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
tests_require = ['nose >= 1.3.4']
setup(
name='rapid_watershed_delineation',
version='0.3.0',
description='A Python implementation of Rapid Watershed Delineation.',
long_description=long_description,
url='https://github.com/WikiWatershed/rapid-watershed-delineation',
#author='Azavea Inc.',
license='Apache License 2.0',
# TODO Determine Python version support
# See also: https://github.com/azavea/tr-55/issues/16
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
],
keywords='watershed hydrology',
packages=find_packages(exclude=['tests']),
install_requires=[],
extras_require={
'dev': [],
'test': tests_require,
},
test_suite='nose.collector',
tests_require=tests_require,
)