-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
115 lines (92 loc) · 3.47 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#! /usr/bin/env python
import os
import sys
import re
import setuptools
from setuptools import setup
descr = """TrendVis (a.k.a. `trendvis`): Complex plotting in matplotlib.
This package is designed to programmatically create complex, publication-
quality figures using matplotlib. TrendVis' speciality is creating
multiple vertically or horizontally offset plots with a
common x or y axis, respectively, in what is visually one compact
plotting area, facilitating comparisons among various datasets.
"""
DISTNAME = 'TrendVis'
DESCRIPTION = 'Publication-quality data trend visualization'
LONG_DESCRIPTION = descr
MAINTAINER = 'Mellissa Cross'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'Modified BSD'
DOWNLOAD_URL = ''
VERSION = '0.2.2'
PYTHON_VERSION = (2, 6)
DEPENDENCIES = {'matplotlib': (1, 2)}
def check_requirements():
if sys.version_info < PYTHON_VERSION:
raise SystemExit('Python version %d.%d required; found %d.%d.'
% (PYTHON_VERSION[0], PYTHON_VERSION[1],
sys.version_info[0], sys.version_info[1]))
for package_name, min_version in DEPENDENCIES.items():
dep_err = False
try:
package = __import__(package_name)
except ImportError:
dep_err = True
else:
package_version = get_package_version(package)
if min_version > package_version:
dep_err = True
if dep_err:
raise ImportError('`%s` version %d.%d or later required.'
% ((package_name, ) + min_version))
def get_package_version(package):
version = []
for version_attr in ('version', 'VERSION', '__version__'):
if hasattr(package, version_attr) \
and isinstance(getattr(package, version_attr), str):
version_info = getattr(package, version_attr, '')
for part in re.split('\D+', version_info):
try:
version.append(int(part))
except ValueError:
pass
return tuple(version)
def write_version_py(filename='trendvis/version.py'):
template = """# THIS FILE IS GENERATED FROM THE TRENDVIS SETUP.PY
version='%s'
"""
vfile = open(os.path.join(os.path.dirname(__file__),
filename), 'w')
try:
vfile.write(template % VERSION)
finally:
vfile.close()
if __name__ == '__main__':
check_requirements()
write_version_py()
setup(
name=DISTNAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
download_url=DOWNLOAD_URL,
version=VERSION,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False
)