-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.12 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
# -*- coding: utf-8 -*-
from os.path import join
from setuptools import setup, find_packages
version = '1.0+crom.dev'
install_requires = [
'cromlech.browser >= 0.5',
'dawnlight >= 0.13b2',
'crom',
'grokker',
'setuptools',
'zope.interface',
'zope.location',
'zope.proxy',
]
tests_require = [
'cromlech.browser[test]',
'pytest',
]
setup(
name='cromlech.dawnlight',
version=version,
description="Dawnlight publisher for Cromlech applications.",
long_description=(open("README.md").read() + "\n\n" +
open(join("docs", "HISTORY.txt")).read()),
classifiers=[
"Programming Language :: Python",
],
keywords='Cromlech Publisher',
author='The Dolmen team',
author_email='[email protected]',
url='http://gitweb.dolmen-project.org',
license='ZPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['cromlech'],
include_package_data=True,
zip_safe=False,
tests_require=tests_require,
install_requires=install_requires,
extras_require={'test': tests_require},
)