forked from mahmoud/face
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (47 loc) · 1.51 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
"""A command-line interface parser and framework, friendly for users,
full-featured for developers.
"""
from setuptools import setup
__author__ = 'Mahmoud Hashemi'
__version__ = '22.0.1dev'
__contact__ = 'mahmoud@hatnote.com'
__url__ = 'https://github.com/mahmoud/face'
__license__ = 'BSD'
setup(name='face',
version=__version__,
description="A command-line application framework (and CLI parser). Friendly for users, full-featured for developers.",
long_description=__doc__,
author=__author__,
author_email=__contact__,
url=__url__,
packages=['face', 'face.test'],
include_package_data=True,
zip_safe=False,
license=__license__,
platforms='any',
install_requires=['boltons>=20.0.0'],
classifiers=[
'Topic :: Utilities',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', ]
)
"""
A brief checklist for release:
* tox
* git commit (if applicable)
* Bump setup.py version off of -dev
* git commit -a -m "bump version for vx.y.z release"
* python setup.py sdist bdist_wheel upload
* bump docs/conf.py version
* git commit
* git tag -a vx.y.z -m "brief summary"
* write CHANGELOG
* git commit
* bump setup.py version onto n+1 dev
* git commit
* git push
"""