forked from Freshwater-Initiative/Observatory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·52 lines (46 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
51
52
from __future__ import (absolute_import,
division,
print_function,
unicode_literals)
import os
from codecs import open
from setuptools import find_packages, setup
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
# Dependencies.
with open('requirements.txt') as f:
requirements = f.readlines()
install_requires = [t.strip() for t in requirements]
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ogh',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Tools for observing the terrestrial and aquatic surfaces of Earth',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Freshwater-Initiative/Observatory',
author='Jimmy Phuong',
author_email='[email protected]',
maintainer='Landung Setiawan',
maintainer_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering'
],
keywords=['Freshwater', 'Intiative', 'Tools'],
packages=find_packages(),
install_requires=install_requires,
setup_requires=['setuptools>=38.6.0',
'wheel>=0.31.0',
'twine>=1.11.0']
)