forked from collective/collective.z3cform.datetimewidget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1.21 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
from setuptools import setup, find_packages
version = '1.2.7.dev0'
setup(name='collective.z3cform.datetimewidget',
version=version,
description="z3c.form date and datetime widgets",
long_description=open("README.txt").read() + "\n" +
open("HISTORY.txt").read(),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='z3cform datetime widget',
author='Rok Garbas',
author_email='[email protected]',
url='https://github.com/collective/collective.z3cform.datetimewidget',
license='GPL version 2',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective', 'collective.z3cform'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.i18n',
'z3c.form',
'zope.deprecation'
],
extras_require=dict(test=[
'z3c.form',
'zope.browserpage',
'zope.publisher',
'zope.testing',
'zope.traversing',
'zc.buildout',
'Zope2',
]),
)