-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (53 loc) · 1.31 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
from setuptools import setup, find_packages
install_requires = []
setup(
name='libcoveweb',
version='0.31.1',
author='Open Data Services',
author_email='[email protected]',
packages=find_packages(),
package_data={
'cove': [
'fixtures/*',
'locale/*/*/*.po',
'locale/*/*/*.mo',
'sass/*/*',
'sass/*/*/*',
'sass/*/*/*/*',
'static/*/*',
'static/*/*/*',
'static/*/*/*/*',
'templates/*'
]
},
scripts=['manage.py'],
url='https://github.com/OpenDataServices/lib-cove-web',
description='',
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
python_requires=">=3.8",
install_requires=[
"Django>=2.2,<4.3",
"django-bootstrap3",
"requests",
"flattentool",
"werkzeug",
"libcove>=0.17.0",
],
extras_require={
'test': [
"flake8",
"pytest",
"pytest-django",
"pytest-cov",
"pytest-localserver",
"pytest-xdist",
"coveralls",
"selenium",
"transifex-client",
"libsass",
"hypothesis",
],
}
)