-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (48 loc) · 1.38 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import join
name = 'dolmen.menu'
version = '3.0-crom'
readme = open("README.txt").read()
history = open(join('docs', 'HISTORY.txt')).read()
install_requires = [
'crom',
'cromlech.browser >= 0.5',
'cromlech.i18n',
'dolmen.template >= 0.2',
'dolmen.viewlet >= 0.4',
'setuptools',
'zope.interface',
'zope.location',
'zope.schema',
]
tests_require = [
'pytest',
'cromlech.browser [test]',
'cromlech.location',
]
setup(name=name,
version=version,
description='Dolmen menu components',
long_description=readme + '\n\n' + history,
keywords='Dolmen Menu',
author='The Dolmen team',
author_email='[email protected]',
url='http://gitweb.dolmen-project.org',
license='ZPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['dolmen'],
include_package_data=True,
platforms='Any',
zip_safe=False,
tests_require=tests_require,
install_requires=install_requires,
extras_require={'test': tests_require},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Other Audience',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)