-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1021 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
VERSION="0.0.3"
setup(
author="Alex Clark",
author_email="aclark@aclark.net",
classifiers=[
"Framework :: Plone :: 4.3",
"Programming Language :: Python :: 2.7",
],
description="Asthma Files Site",
keywords=[
"Plone",
],
license="GPL",
long_description=(
open("README.rst").read() + '\n' +
open("CHANGES.rst").read()
),
name='rpi.asthma_files_site',
packages=find_packages(),
test_suite="rpi.asthma_files_site.tests",
url="https://github.com/ACLARKNET/rpi.asthma_files_site",
namespace_packages=[
'rpi'
],
entry_points={
'z3c.autoinclude.plugin': 'target = plone',
},
include_package_data=True,
install_requires=[
'setuptools',
'collective.cover',
'collective.monkeypatcher',
'five.grok',
# 'pyzotero',
'z3c.jbot',
],
version=VERSION,
zip_safe=True,
)