-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (50 loc) · 1.41 KB
/
setup.py
File metadata and controls
57 lines (50 loc) · 1.41 KB
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(
os.path.join(
os.path.join(os.path.dirname(__file__), 'docs'),
*rnames)).read()
version = '1.0+crom.dev'
long_description = read('README.txt') + '\n' + read('HISTORY.txt')
install_requires = [
'cromlech.browser >= 0.5',
'cromlech.i18n',
'setuptools',
'zope.location',
'zope.interface',
'crom',
]
tests_require = [
'cromlech.browser [test]',
'zope.configuration',
'zope.interface',
]
setup(
name='dolmen.view',
version=version,
author='Grok & Dolmen Teams',
author_email='dolmen@list.dolmen-project.org',
url='http://gitweb.dolmen-project.org',
download_url='http://pypi.python.org/pypi/dolmen.view',
description='Grok-like configuration for View components',
long_description=long_description,
license='ZPL',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
],
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['dolmen'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'test': tests_require
},
)