-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.24 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
from setuptools import setup, find_packages
import os
version = '0.7'
tests_require = ['zope.testing', 'zc.buildout']
setup(name='collective.recipe.moin',
version=version,
description="A recipe to build a wiki site with MoinMoin",
long_description=open("README.rst").read() + "\n" +
open("HISTORY.txt").read(),
classifiers=[
"Framework :: Buildout",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
],
keywords='',
author='Erik Rivera',
author_email='[email protected]',
url='https://github.com/pythonmexico/collective.recipe.moin',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective', 'collective.recipe'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'zc.buildout',
'zc.recipe.egg',
],
entry_points="""
[zc.buildout]
default = collective.recipe.moin:Recipe
""",
tests_require=tests_require,
extras_require=dict(tests=tests_require),
test_suite='collective.recipe.moin.tests.test_docs.test_suite',
)