-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
79 lines (74 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '2.5.12.dev0'
long_description = (
read('README.rst')
+ '\n' +
'Change history\n'
'**************\n'
+ '\n' +
read('CHANGES.rst')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('src', 'archetypes', 'referencebrowserwidget', 'README.txt')
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
read('CONTRIBUTORS.txt')
+ '\n\n' +
'Download\n'
'********\n'
)
setup(name='archetypes.referencebrowserwidget',
version=version,
description="A referencebrowser implementation for Archetypes",
long_description=long_description,
classifiers=[
"Development Status :: 6 - Mature",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: Core",
"License :: OSI Approved :: Zope Public License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='Relation Widget',
author='Tom Gross',
author_email='itconsense@gmail.com',
url='https://pypi.org/project/archetypes.referencebrowserwidget',
license='ZPL 2.1',
namespace_packages=['archetypes'],
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# 'DateTime',
# 'Products.Archetypes',
'zope.interface',
'zope.component',
'zope.formlib',
# 'Products.CMFCore',
# 'ZODB3',
# 'Zope2',
# 'Acquisition',
# 'plone.app.form',
'plone.app.jquerytools>=1.1b1',
# 'plone.uuid'
# Older versions of jquerytools don't work. See #10939
],
entry_points="""
# -*- Entry points: -*-
""",
)