-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (55 loc) · 1.58 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
56
57
58
59
from setuptools import find_packages
from setuptools import setup
import os
version = "10.0.5.dev0"
setup(
name="tno.euphorie",
version=version,
description="TNO specific extensions for Euphorie",
long_description=open("README.rst").read()
+ "\n"
+ open(os.path.join("docs", "changes.rst")).read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.2",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: Dutch",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
],
keywords="Euphorie OIRA RIE",
author="Wichert Akkerman and Syslab.com",
author_email="info@syslab.com",
url="http://readthedocs.org/docs/tnoeuphorie/en/latest/",
license="GPL",
packages=find_packages("src"),
namespace_packages=["tno"],
include_package_data=True,
package_dir={"": "src"},
zip_safe=False,
install_requires=[
"Euphorie >=12.0.0",
"NuPlone >=2.0.0",
"Pillow",
"alembic",
"Products.statusmessages",
"htmllaundry",
"plone.autoform",
"plone.tiles",
"requests",
"setuptools",
"zope.publisher",
"plone.api",
"z3c.jbot",
],
tests_require=[
"Euphorie [tests]",
],
extras_require={
"tests": ["Euphorie [tests]"],
},
)