-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (52 loc) · 1.71 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
57
58
59
60
from setuptools import setup, find_packages
import os
version = '2.1.5'
name = 'leocornus.recipe.distribute'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name=name,
version=version,
description="zc.buildout recipe for package and distribute files, modules, libs, archives, etc.",
long_description= (
'`Check the GitHub Page <http://github.com/leocornus/%s>`_ for details document\n' % name
+ '\n' +
'General Usage\n'
'*******************\n'
+ '\n' +
read('leocornus','recipe','distribute','README.rst')
+ '\n' +
'Download\n'
'***************\n'
),
classifiers=[
'Framework :: Buildout',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='development buildout recipe package distribute',
author='Sean Chen',
author_email='sean.chen@leocorn.com',
url='http://github.com/leocornus/%s' % name,
license='GPLv2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['leocornus', 'leocornus.recipe'],
include_package_data = True,
zip_safe=False,
install_requires = [
'zc.buildout',
'setuptools',
'mwclient',
'requests',
'six'],
extras_require={
'test' : ['zope.testing'],
},
tests_require = ['zope.testing', 'mwclient',
],
test_suite = '%s.tests.testDoctests.test_suite' % name,
entry_points = { 'zc.buildout' : ['default = leocornus.recipe.distribute:Dist',
] },
)