-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathsetup.py
74 lines (71 loc) · 2.04 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
# This file is part of Bika LIMS Evo
#
# Copyright 2017 by it's authors.
# Some rights reserved. See LICENSE.rst, CONTRIBUTORS.rst.
from setuptools import setup, find_packages
version = '1.1.9'
setup(
name='senaite.core',
version=version,
description="SENAITE Core",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read() + "\n",
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
],
keywords=['senaite', 'lims', 'opensource'],
author='SENAITE Foundation',
author_email='[email protected]',
url='https://github.com/senaite/senaite.core',
license='GPLv2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bika'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.api',
'plone.jsonapi.core',
'Products.ATExtensions>=1.1a3',
'Products.CMFEditions',
'Products.DataGridField',
'Products.AdvancedQuery',
'Products.TinyMCE',
'collective.monkeypatcher',
'collective.js.jqueryui',
'plone.app.z3cform',
'openpyxl==1.5.8',
'plone.app.iterate',
'magnitude',
'gpw',
'jarn.jsi18n==0.3',
'WeasyPrint==0.19.2',
'collective.progressbar',
'z3c.unconfigure==1.0.1',
'plone.app.dexterity',
'plone.app.relationfield',
'plone.app.referenceablebehavior',
'five.pt==2.2.4',
'z3c.jbot',
'plone.resource',
'CairoSVG==1.0.20',
'collective.taskqueue',
],
extras_require={
'test': [
'unittest2',
'plone.app.testing',
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)