-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathsetup.py
94 lines (89 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# This file is part of Bika LIMS
#
# Copyright 2011-2017 by it's authors.
# Some rights reserved. See LICENSE.txt, AUTHORS.txt.
import os
from setuptools import setup, find_packages
version = '3.4.0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() + "\n"
setup(name='bika.lims',
version=version,
description="Bika LIMS",
long_description=read("README.rst") + \
read("docs/INSTALL.rst") + \
read("docs/CHANGELOG.txt") + \
"\n\n" + \
"Authors and maintainers\n" + \
"-----------------------\n" + \
"- Bika Lab Systems, http://bikalabs.com\n" + \
"- Naralabs, http://naralabs.com\n" + \
"- RIDING BYTES, http://ridingbytes.com",
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
keywords=['lims', 'bika', 'opensource'],
author='Bika Laboratory Systems',
author_email='support@bikalabs.com',
maintainer='RIDING BYTES',
maintainer_email='hello@ridingbytes.com',
url='http://www.bikalims.org',
license='AGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bika'],
include_package_data=True,
zip_safe=False,
install_requires=[
'CairoSVG==1.0.20',
'collective.js.jqueryui',
'collective.monkeypatcher',
'collective.progressbar',
'five.pt',
'gpw',
'jarn.jsi18n==0.3',
'magnitude',
'openpyxl',
'plone.api',
'plone.app.dexterity',
'plone.app.iterate',
'plone.app.referenceablebehavior',
'plone.app.relationfield',
'plone.app.z3cform',
'plone.jsonapi.core',
'plone.resource',
'Products.AdvancedQuery',
'Products.ATExtensions>=1.1a3',
'Products.CMFEditions',
'Products.DataGridField',
'Products.TinyMCE',
'setuptools',
'WeasyPrint==0.19.2',
'z3c.jbot',
'z3c.unconfigure==1.0.1',
],
extras_require={
'test': [
'Products.SecureMailHost',
'plone.app.robotframework',
'plone.app.testing',
'plone.app.textfield',
'plone.resource',
'Products.PloneTestCase',
'robotframework-debuglibrary',
'robotframework-selenium2library',
'robotsuite',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)