-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
82 lines (69 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
about = {}
with open("metacsv/__about__.py") as fp:
exec(fp.read(), about)
install_reqs = [
'pandas>=1.0',
'numpy>=1.10',
'pyyaml>=3.0']
tests_reqs = install_reqs + [
'xarray>=0.7',
'netCDF4>=1.2.4',
'pytest >= 2.7.1',
'pytest-runner >= 2.8.0',
'flake8 >= 3.0',
'tox >= 2.4',
'coverage >= 4.3.4',
'pytest >= 3.0.6',
'pytest_cov >= 2.4.0']
if sys.version_info < (2, 7):
install_reqs += ['argparse']
tests_reqs += ['unittest2']
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
if sys.argv[-1] == 'info':
for k, v in about.items():
print('%s: %s' % (k, v))
sys.exit()
extras_require = {
'xarray': [
'xarray>=0.7',
'netCDF4']
}
readme = open('README.rst').read()
history = open('CHANGES').read().replace('.. :changelog:', '')
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=readme + '\n\n' + history,
author=about['__author__'],
author_email=about['__email__'],
url='https://github.com/delgadom/metacsv',
packages=find_packages(exclude=['docs']),
include_package_data=True,
install_requires=install_reqs,
tests_require=tests_reqs,
extras_require=extras_require,
license=about['__license__'],
keywords=about['__title__'],
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
test_suite='metacsv.testsuite',
)