-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
48 lines (45 loc) · 1.49 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
from setuptools import setup, find_packages
DESCRIPTION = "Superdesk Planning Module"
package_data = {
"planning": [
"templates/*.txt",
"templates/*.html",
"*.po",
"*.mo",
"data_updates/*.py",
"data_updates/*.js",
]
}
setup(
name="superdesk-planning",
version="2.8.2",
description=DESCRIPTION,
long_description=DESCRIPTION,
package_dir={"": "server"},
packages=find_packages("server"),
package_data=package_data,
include_package_data=True,
author="Edouard Richard",
author_email="[email protected]",
license="AGPLv3",
install_requires=["icalendar>=4.0.3,<5.1", "deepdiff"],
url="https://github.com/superdesk/superdesk-planning",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Multimedia",
],
python_requires="~=3.5",
)