-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
86 lines (80 loc) · 2.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
requirements = [
"Django==3.2.23",
"django-auth-ldap==4.1.0",
"celery==5.2.3",
"celery-haystack-ng",
"django-celery-beat==2.3.0",
"django-celery-results==2.4.0",
"django-sql-explorer==2.4.1",
"django-excel-response==2.0.5",
"xlsxwriter==1.2.9",
"django-model-utils==4.2.0",
"django-sequences==2.6",
"django-enumchoicefield==3.0",
"django-compressor==2.2",
"django-debug-toolbar==3.2.1",
"django-formtools==2.4.1",
"django-widget-tweaks==1.4.3",
"django-countries==7.3.2",
"django-haystack==3.1",
"django-reversion==3.0.3",
"django-guardian==2.4.0",
"django-stronghold==0.3.0",
"gunicorn==19.9.0",
"ipython==8.10.0",
"ontobio==2.8.8",
"yamldown>=0.1.8",
"psycopg2-binary==2.9.3",
"pysolr==3.8.1",
"pytest-runner==5.1",
"python-keycloak==2.6.0",
"pytz==2022.1",
"requests==2.31.0",
"urllib3==1.26.18",
"setuptools-scm==3.3.3",
"jsonschema==3.2.0",
"mockldap@git+https://github.com/elixir-luxembourg/mockldap2.git",
"django-auditlog==2.1.1",
"black==23.7.0",
]
test_requirements = [
"coverage==6.4.1",
"factory_boy==3.2.1",
"pytest==7.1.2",
"pytest-django==4.5.2",
"pytest-solr==1.0a1",
"pytest-celery",
"pytest-mock==3.12.0",
"requests-mock==1.12.1",
]
dev_requirements = ["pre-commit==3.3.3"]
setup(
name="elixir-daisy",
version="1.8.2",
description="Elixir-LU DAISY",
author="Pinar Alper, Valentin Grouès, Yohan Jarosz, Jacek Lebioda, Kavita Rege, Vilem Ded",
author_email="[email protected]",
url="https://github.com/elixir-luxembourg/daisy",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
package_dir={"elixir_daisy": "elixir_daisy"},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords=["elixir", "gdpr", "data protection"],
classifiers=[
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
],
test_suite="tests",
tests_require=test_requirements,
package_data={"elixir-daisy": ["elixir_daisy/resources/*"]},
extras_require={"dev": dev_requirements, "test": test_requirements},
scripts=["manage.py"],
)