This repository has been archived by the owner on Nov 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
52 lines (49 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
##############################################################################
#
# Copyright (c) 2004-2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Setup for manuel package
"""
from setuptools import setup, find_packages
long_description = (
open('README.txt').read()
+ '\n\n'
+ open('CHANGES.txt').read()
)
tests_require = ['zope.testing']
setup(
name='manuel',
version='0',
url = 'http://pypi.python.org/pypi/manuel',
packages=find_packages('src'),
package_dir={'':'src'},
zip_safe=False,
author='Benji York',
author_email='[email protected]',
description='Manuel lets you build tested documentation.',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license='ZPL',
extras_require={
'tests': tests_require,
},
tests_require = tests_require,
test_suite = 'manuel.tests.test_suite',
install_requires=[
'setuptools',
'six',
],
include_package_data=True,
long_description = long_description,
)