-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
58 lines (47 loc) · 1.7 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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import os
PACKAGE_NAME = "argparse2"
setup(
name='argparse2',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#version
version='0.5.0-alpha1',
license='Python Software Foundation License',
# The project homepage.
url='https://github.com/cjerdonek/python-argparse',
description="Fork of Python's argparse to add features and simplify its code",
keywords=('argparse argparse2 command-line "command line" parser parsing '
'getopt optparse')
author='Chris Jerdonek',
author_email='chris.jerdonek@gmail.com',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=[]),
# To install dependencies for an extra from a source distribution,
# you can do the following, for example:
#
# $ pip install -e .[dev,test]
#
extras_require = {
'dev': [
'check-manifest',
'sphinx',
'sphinx-autobuild',
'twine >=1.3,<1.4',
],
'test': [
'coverage',
],
},
)