forked from bikalims/bika.health
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (51 loc) · 1.75 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
from setuptools import setup, find_packages
import os
version = '3.1.8'
setup(name='bika.health',
version=version,
description="Bika Health Open Source LIS",
long_description=open("README.md").read() + "\n\n" +
open("docs/CHANGELOG.txt").read(),
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
keywords=['lims', 'health', 'bika', 'opensource'],
author='Bika Laboratory Systems',
author_email='support@bikalabs.com',
maintainer='Naralabs',
maintainer_email='info@naralabs.com',
url='http://github.com/bikalabs/bika.health',
license='AGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bika'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'bika.lims<3.2',
'archetypes.schemaextender',
'collective.wtf',
],
extras_require={
'test': [
'plone.app.testing',
'robotsuite',
'robotframework-selenium2library',
'plone.app.robotframework',
'robotframework-debuglibrary',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)