-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
87 lines (82 loc) · 2.33 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
86
87
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
CLASSIFIERS = ['Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Archiving', ]
setup(
name = "Francoralite",
url = "http://francoralite.org",
description = "Open web audio application with semantics",
long_description = open('README.md').read(),
author = "Luc Leger",
author_email = "[email protected]",
version = '1.7.0',
install_requires = [
'django==3.1.14',
'django-appconf==1.0.4',
'django-filter==2.4.0',
'djangorestframework==3.12.2',
'djangorestframework-xml==2.0.0',
'drf-nested-routers==0.93.3',
'drf-yasg==1.20.0',
'gunicorn==20.0.4',
# V2
'psycopg2-binary==2.8.6',
'pyaml==20.4.0',
#'MySQL-python==1.2.5',
'mysqlclient==2.0.3',
# V3
'django-registration-redux==2.9',
'django-extensions==3.1.1',
'django-debug-toolbar==3.2.1',
'django-extra-views==0.13.0',
'pyyaml==5.4.1',
'Werkzeug==3.0.3',
'django-dirtyfields==1.5.0',
'sqlparse==0.4.4',
'django-markdownx==3.0.1',
'django_select2==7.6.2',
'lxml==4.9.1',
'django-leaflet==0.28.1',
'django-geojson==3.1.0',
'django-cors-headers==3.7.0',
'python-keycloak==0.26.1',
'rsa==4.7.2',
'python-jose==3.3.0',
'mozilla-django-oidc==2.0.0',
'rdflib==5.0.0',
],
extras_require={
'tests': [
'factory_boy==3.2.0',
'ipython==7.21.0',
'parameterized==0.8.1',
'pytest==6.2.2',
'pytest-cov==2.11.1',
'pytest-django==4.1.0',
'pytest-env==0.6.2',
'pytest-pythonpath==0.7.3',
'coveralls==3.0.1',
'selenium==4.5.0',
'coverage==5.5',
'coveragepy-lcov==0.1.1',
'icecream==2.1.1',
],
},
platforms = ['OS Independent'],
license = 'CeCILL v2',
classifiers = CLASSIFIERS,
packages = find_packages(),
include_package_data = True,
zip_safe = False,
)