-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
87 lines (77 loc) · 2.84 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
#!/usr/bin/env python
# vim: set et sw=4 sts=4:
# Copyright 2014 Dave Jones <[email protected]>.
#
# This file is part of compoundpi.
#
# compoundpi 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 2 of the License, or (at your option) any later
# version.
#
# compoundpi 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
# compoundpi. If not, see <http://www.gnu.org/licenses/>.
from __future__ import (
unicode_literals,
absolute_import,
print_function,
division,
)
str = type('')
import os
import sys
from setuptools import setup, find_packages
if sys.version_info[0] == 2:
if not sys.version_info >= (2, 7):
raise ValueError('This application requires Python 2.7 or above')
elif sys.version_info[0] == 3:
if not sys.version_info >= (3, 2):
raise ValueError('This application requires Python 3.2 or above')
else:
raise ValueError('Unrecognized major version of 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)
# Workaround <http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html>
try:
import multiprocessing
except ImportError:
pass
def main():
import io
import compoundpi as app
with io.open(os.path.join(HERE, 'README.rst'), 'r') as readme:
setup(
name = app.__project__,
version = app.__version__,
description = app.__doc__,
long_description = readme.read(),
classifiers = app.__classifiers__,
author = app.__author__,
author_email = app.__author_email__,
url = app.__url__,
license = [
c.rsplit('::', 1)[1].strip()
for c in app.__classifiers__
if c.startswith('License ::')
][0],
keywords = app.__keywords__,
packages = find_packages(),
include_package_data = True,
platforms = app.__platforms__,
install_requires = app.__requires__,
extras_require = app.__extra_requires__,
entry_points = app.__entry_points__,
)
if __name__ == '__main__':
main()