-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.25 KB
/
setup.py
File metadata and controls
53 lines (51 loc) · 1.25 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
from setuptools import setup, find_packages
install_requires = []
setup(
name='libcoveweb',
version='0.31.2',
author='Open Data Services',
author_email='code@opendataservices.coop',
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 :: BSD License"],
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",
],
}
)