-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
134 lines (118 loc) · 4.06 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env python
# vim: set et sw=4 sts=4:
# Copyright 2012 Dave Hughes.
#
# This file is part of oxitopped.
#
# oxitopped is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# oxitopped is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# oxitopped. If not, see <http://www.gnu.org/licenses/>.
from __future__ import (
# XXX Alright! I give in! Distutils and all its myriad extensions (py2exe,
# py2app, et al.) are all too shit to handle unicode with barfing all over
# the floor, so out goes the following line...
#unicode_literals,
print_function,
absolute_import,
division,
)
import os
from setuptools import setup, find_packages
from utils import description, get_version, require_python
HERE = os.path.abspath(os.path.dirname(__file__))
# Workaround <http://bugs.python.org/issue10945>
import codecs
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs')
codecs.register(func)
require_python(0x020600f0)
# All meta-data is defined as global variables so that other modules can query
# it easily without having to wade through distutils nonsense
NAME = 'oxitopped'
DESCRIPTION = 'Tools for extracting data from an OxiTop OC110 data logger'
KEYWORDS = ['science', 'gas', 'bottle', 'oxitop']
AUTHOR = 'Dave Hughes'
AUTHOR_EMAIL = '[email protected]'
MANUFACTURER = 'waveform'
URL = 'https://www.waveform.org.uk/oxitopped/'
REQUIRES = [
'pyserial',
'distribute',
]
EXTRA_REQUIRES = {
'XLS': ['xlwt'],
'GUI': ['pyqt', 'matplotlib', 'numpy'],
'daemon': ['python-daemon'],
'completion': ['optcomplete'],
}
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
]
ENTRY_POINTS = {
'console_scripts': [
'oxitoplist = oxitopped.oxitoplist:main',
'oxitopdump = oxitopped.oxitopdump:main',
'oxitopemu = oxitopped.oxitopemu:main',
],
'gui_scripts': [
'oxitopview = oxitopped.oxitopview:main',
],
}
PACKAGES = [
'oxitopped',
'oxitopped.windows',
]
PACKAGE_DATA = {
'oxitopped': [
'*.xml',
],
'oxitopped.windows': [
'*.ui',
os.path.join('fallback-theme', '*.png'),
os.path.join('fallback-theme', '*.svg'),
],
}
def main():
setup(
name = NAME,
version = get_version(os.path.join(HERE, NAME, '__init__.py')),
description = DESCRIPTION,
long_description = description(os.path.join(HERE, 'README.rst')),
classifiers = CLASSIFIERS,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
keywords = ' '.join(KEYWORDS),
packages = PACKAGES,
package_data = PACKAGE_DATA,
platforms = 'ALL',
install_requires = REQUIRES,
extras_require = EXTRA_REQUIRES,
zip_safe = True,
test_suite = NAME,
entry_points = ENTRY_POINTS,
)
if __name__ == '__main__':
main()