This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
69 lines (60 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup, find_packages
version = '1.0'
tests_require = [
'ftw.lawgiver [tests]',
'plone.app.testing',
'tinycss',
'Products.SecureMailHost'
]
setup(
name='onegov.municipality',
version=version,
long_description=(
'\n'.join((
open("README.rst").read(),
open("docs/HISTORY.txt").read()
))
),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='plone onegov municipality',
author='Verein OneGov',
author_email='mailto:[email protected]',
url='https://github.com/OneGov/onegov.municipality',
license='GPL2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['onegov'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Plone',
'Products.PloneFormGen',
'ftw.contentmenu',
'ftw.contentpage',
'ftw.file',
'ftw.footer',
'ftw.globalstatusmessage',
'ftw.inflator[dexterity]',
'ftw.lawgiver',
'ftw.subsite',
'ftw.topics',
'ftw.upgrade',
'plone.api',
'plonetheme.onegov',
'seantis.dir.base[extended_data]',
'seantis.dir.events',
'seantis.dir.eventsportlet',
'seantis.people',
'setuptools',
],
tests_require=tests_require,
extras_require=dict(tests=tests_require),
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)