forked from vstinner/pysandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (49 loc) · 1.58 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
#!/usr/bin/env python
# Todo list to prepare a release:
# - run python2.5 tests.py
# - run python2.6 tests.py
# - check TODO if there is no more critical known bug
# - do an audit of new features (see the ChangeLog)
# - set version in sandbox/version.py
# - set release date in the ChangeLog
# - git commit -a
# - git tag -a pysandbox-n
# - git push --tags
# - ./setup.py register sdist upload
# - update the website
#
# After the release:
# - set version to n+1
# - add a new empty section in the changelog for version n+1
# - git commit
from __future__ import with_statement
from distutils.core import setup, Extension
import imp
version = imp.load_source('version', 'sandbox/version.py')
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
]
with open('README') as f:
long_description = f.read().strip()
options = {
'name': version.PACKAGE,
'version': version.VERSION,
'license': version.LICENSE,
'description': 'Python sandbox',
'long_description': long_description,
'url': version.URL,
'author': 'Victor Stinner',
'author_email': '[email protected]',
'ext_modules': [Extension('_sandbox', ['_sandbox/module.c'])],
'classifiers': CLASSIFIERS,
'packages': ('sandbox',),
}
setup(**options)