forked from neithere/argh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·116 lines (98 loc) · 3.62 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
#!/usr/bin/env python
# coding: utf-8
#
# Copyright © 2010—2014 Andrey Mikhaylenko and contributors
#
# This file is part of Argh.
#
# Argh is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Argh 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Argh. If not, see <http://gnu.org/licenses/>.
import io
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
if sys.version_info < (2,7):
#
# Python 2.6
#
install_requires = ['argparse >= 1.1']
# Importing `__version__` from `argh` would trigger a cascading import
# of `argparse`. Avoiding this as Python < 2.7 ships without argparse.
__version__ = None
with io.open('argh/__init__.py', encoding='utf8') as f:
for line in f:
if line.startswith('__version__'):
exec(line)
break
assert __version__, 'argh.__version__ must be imported correctly'
else:
#
# Python 2.7, 3.x
#
install_requires = []
from argh import __version__
with io.open(os.path.join(os.path.dirname(__file__), 'README.rst'),
encoding='ascii') as f:
readme = f.read()
class PyTest(TestCommand):
# see http://pytest.org/latest/goodpractises.html#integration-with-setuptools-distribute-test-commands
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
# overview
name = 'argh',
description = 'An unobtrusive argparse wrapper with natural syntax',
long_description = readme,
# technical info
version = __version__,
packages = ['argh'],
provides = ['argh'],
install_requires = install_requires,
# testing
tests_require = ['pytest'],
cmdclass = {'test': PyTest},
# copyright
author = 'Andrey Mikhaylenko',
author_email = '[email protected]',
license = 'GNU Lesser General Public License (LGPL), Version 3',
# more info
url = 'http://github.com/neithere/argh/',
# categorization
keywords = ('cli command line argparse optparse argument option'),
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)