-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
41 lines (39 loc) · 1.11 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
from setuptools import setup, find_packages
version = '0.1'
setup(name='bika.wine',
version=version,
description="Bika Wine LIMS",
long_description=open("README.md").read(),
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='Bika Open Source LIMS',
author='Bika Laboratory Systems',
author_email='support@bikalabs.com',
url='www.bikalabs.com',
license='AGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bika'],
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'
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)