-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
48 lines (44 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
48
# Copyright (c) 2010-2011 Simplistix Ltd
#
# This Software is released under the MIT License:
# http://www.opensource.org/licenses/mit-license.html
# See license.txt for more details.
from setuptools import setup, find_packages
import os
base_dir = os.path.join(os.path.dirname(__file__))
setup(
name='buildout-versions',
version='1.7',
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="zc.buildout extension to display and record versions of packages used.",
long_description=open(os.path.join(base_dir,'docs','description.txt')).read(),
url='http://www.simplistix.co.uk/software/python/buildout-versions',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
],
packages = find_packages('src'),
package_dir = {'':'src'},
zip_safe=False,
include_package_data=True,
install_requires=[
'zc.buildout>=1.5.0',
],
entry_points = {
'zc.buildout.extension': [
'default = buildout_versions:start',
],
'zc.buildout.unloadextension': [
'default = buildout_versions:finish',
],
},
extras_require=dict(
test=[
'manuel',
'testfixtures',
'zc.recipe.egg',
],
)
)