forked from mikejmets/ace.lims
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.64 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
import os
from setuptools import setup, find_packages
version = '0.1'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name='ace.lims',
version=version,
description="ACE LIMS",
long_description=read("readme.md"),
# 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', 'opensource'],
author='Bika Laboratory Systems',
author_email='[email protected]',
url='www.bikalabs.com',
license='AGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ace'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'bika.lims',
'archetypes.schemaextender',
],
extras_require={
'test': [
'plone.app.testing',
'robotsuite',
'robotframework-selenium2library',
'plone.app.robotframework',
'Products.PloneTestCase',
'robotframework-debuglibrary',
'plone.resource',
'plone.app.textfield',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)