-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
47 lines (43 loc) · 1.35 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
from setuptools import setup
setup(
name="ufork",
version="20.11.2dev",
author="Kurt Rose",
author_email="kurt@kurtrose.com",
description="A simple pre-forking server container.",
license="BSD",
url="http://github.com/kurtbrose/ufork",
packages=['ufork'],
long_description='A simple, pure-Python preforking server container.',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: BSD License',
]
)
"""
A brief checklist for release:
* tox
* git commit (if applicable)
* Bump version off dev
* git commit -a -m "bump version for vx.y.z release"
* rm -rf dist/*
* python setup.py sdist bdist_wheel
* twine upload dist/*
* bump docs/conf.py version (TODO)
* git commit
* git tag -a vx.y.z -m "brief summary"
* write CHANGELOG (TODO)
* git commit
* bump version onto n+1 dev
* git commit
* git push
"""