forked from mkmik/buildout.eggnestdev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (47 loc) · 1.55 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.4'
name = 'buildout.eggnestdev'
long_description = (
read('README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Detailed Documentation\n'
'======================\n'
+ '\n' +
read('buildout', 'eggnestdev', 'eggnest.txt')
)
entry_point = '%s.eggnest:install' % name
entry_points = {"zc.buildout.extension": ["default = %s" % entry_point]}
tests_require=['zc.buildout']
setup(name=name,
version=version,
description="buildout extension to auto load eggs",
long_description=long_description,
classifiers=[
'Framework :: Buildout',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='GPL',
keywords='buildout extension auto load',
author='Marko Mikulicic',
author_email='[email protected]',
url='http://pypi.python.org/pypi/'+name,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['buildout'],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools',
'zc.buildout'
],
tests_require=tests_require,
extras_require=dict(tests=tests_require),
test_suite = 'buildout.eggnestdev.tests.test_suite',
entry_points=entry_points,
)