forked from okfde/froide
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
85 lines (76 loc) · 2.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python
import codecs
import os
import re
from setuptools import find_packages, setup
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding="utf-8") as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
extras = {
"lint": [
"flake8==6.0.0",
"black==23.3.0",
"isort==5.11.5",
"flake8-bugbear==23.5.9",
],
}
setup(
name="froide",
version=find_version("froide", "__init__.py"),
url="https://github.com/okfde/froide",
license="MIT",
description="German Freedom of Information Portal",
long_description=read("README.md"),
author="Stefan Wehrmeyer",
author_email="[email protected]",
packages=find_packages(),
scripts=["manage.py"],
install_requires=[
"Django",
"Markdown",
"celery",
"geoip2",
"django-elasticsearch-dsl",
"django-taggit",
"requests",
"python-magic",
"djangorestframework",
"djangorestframework-csv",
"djangorestframework-jsonp",
"python-mimeparse",
"django-configurations",
"django-crossdomainmedia",
"django-storages",
"dj-database-url",
"django-filter",
"phonenumbers",
"pygtail",
"django-filingcabinet",
"icalendar",
"easy-thumbnails",
"drf-spectacular[sidecar]",
"python-slugify",
"django-parler",
],
extras_require=extras,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
],
)