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
import os
from setuptools import setup, find_packages
name = "zc.buildout"
setup(
name = name,
version = "1.0.0b6",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "System for managing development buildouts",
long_description=(
open('README.txt').read()
+ '\n' +
open('CHANGES.txt').read()
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
open(os.path.join('src', 'zc', 'buildout', 'buildout.txt')).read()
+ '\n' +
open(os.path.join('src', 'zc', 'buildout', 'update.txt')).read()
),
license = "ZPL 2.1",
keywords = "development build",
url='http://svn.zope.org/zc.buildout',
data_files = [('.', ['README.txt'])],
packages = ['zc', 'zc.buildout'],
package_dir = {'': 'src'},
namespace_packages = ['zc'],
install_requires = 'setuptools',
include_package_data = True,
tests_require = ['zope.testing'],
test_suite = name+'.tests.test_suite',
entry_points = {'console_scripts':
['buildout = %s.buildout:main' % name]},
# dependency_links = ['http://download.zope.org/distribution/'],
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)