forked from digitalfabrik/integreat-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·60 lines (58 loc) · 1.98 KB
/
setup.py
File metadata and controls
executable file
·60 lines (58 loc) · 1.98 KB
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
60
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
setup(
name="integreat_cms",
version="0.0.13",
packages=find_packages("backend"),
package_dir={'':'backend'},
include_package_data=True,
scripts=['backend/integreat-cms'],
data_files= [("lib/integreat-{}".format(root), [os.path.join(root, f) for f in files])
for root, dirs, files in os.walk('backend/cms/templates/')] +
[("lib/integreat-{}".format(root), [os.path.join(root, f) for f in files])
for root, dirs, files in os.walk('backend/cms/static/')] +
[('usr/lib/systemd/system/', ['systemd/integreat-cms@.service'])],
install_requires=[
"asn1crypto==0.24.0",
"cffi==1.11.5",
"cryptography==2.3.1",
"Django==1.11.18",
"django-js-asset==1.1.0",
"django-mptt==0.9.1",
"django-widget-tweaks==1.4.3",
"djangorestframework==3.9.4",
"drf-yasg==1.15.0",
"idna==2.6",
"keyring==10.6.0",
"Pillow==5.3.0",
"psycopg2==2.7.5",
"pycparser==2.19",
"python-dateutil==2.7.5",
"pytz==2018.3",
"pyxdg==0.25",
"SecretStorage==2.3.1",
"six==1.11.0",
"sqlparse==0.2.4",
"pylint==2.2.2",
"pylint-django==2.0.4",
"pylint_runner==0.5.4",
"requests==2.21.0",
"django-filer==1.5.0",
"beautifulsoup4==4.7.1",
"lxml==4.3.3",
],
author="Integreat App Project",
author_email="info@integreat-app.de",
description="Content Management System for the Integreat App",
license="GPL-2.0-or-later",
keywords="Django Integreat CMS",
url="http://github.com/Integreat/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)