-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
51 lines (49 loc) · 1.51 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
from setuptools import setup, find_packages
version = "2.0.0"
setup(
name="senaite.lis2a",
version=version,
description="CLIS LIS2-A results import for SENAITE",
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=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords=['senaite', 'lims', 'opensource', 'LIS2-A'],
author="RIDING BYTES & NARALABS",
author_email="senaite@senaite.com",
url="https://github.com/senaite/senaite.lis2a",
license="GPLv2",
packages=find_packages("src", exclude=["ez_setup"]),
package_dir={"": "src"},
namespace_packages=["senaite"],
include_package_data=True,
zip_safe=False,
install_requires=[
"setuptools",
# not yet released version
"senaite.lims>=2.0.0",
# IPushConsumer adapter was not introduced until Sept-2020
# https://github.com/senaite/senaite.jsonapi/pull/41
"senaite.jsonapi>=1.2.3",
"requests",
],
extras_require={
"test": [
"Products.PloneTestCase",
"Products.SecureMailHost",
"plone.app.testing",
"unittest2",
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)