-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (57 loc) · 1.79 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
54
55
56
57
58
59
60
61
[tool.poetry]
name = "access-stats"
version = "0.3.23"
description = "Django website to view access statistics from CEDA Elasticsearch"
authors = ["Tommy Godfrey <> Matthew Paice <matthew.paice@stfc.ac.uk> Ed Borthwick <ed.borthwick@stfc.ac.uk>"]
license = "BSD - See LICENSE file for details"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
repository = "https://github.com/cedadev/access-stats/"
packages = [
{ include = "access_stats"},
{ include = "common"},
{ include = "downloads"},
]
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
asn1crypto = ">=1.5.1"
bitmath = "1.3.3.1"
certifi = ">=2024.2.2"
cffi = ">=1.16.0"
chardet = ">=5.0.0"
cryptography = ">=42.0.0"
Django = ">=5.2.7, <5.3"
django-bootstrap-datepicker-plus = "5.0.5"
django-classy-tags = "4.1.0"
django-cookie-law = "2.2.0"
django-flexi-settings = {git = "https://github.com/cedadev/django-flexi-settings.git", tag = "0.1.3"}
elasticsearch = "8.12.0"
idna = ">=3.6"
pycparser = ">=2.21"
pyOpenSSL = ">=24.0.0"
PySocks = ">=1.7.1"
pytest-runner = "6.0.1"
python-dateutil = "2.9.0"
pytz = ">=2024.1"
PyYAML = "6.0.1"
pydantic = "1.10.8"
requests = "2.31.0"
six = "1.16.0"
typing-extensions = "4.8.0"
urllib3 = ">=2.2.0"
XlsxWriter = ">=3.1.9"
fwtheme-django = {git = "https://github.com/cedadev/fwtheme-django", branch = "master"}
fwtheme-django-ceda-serv = {git = "https://github.com/cedadev/fwtheme-django-ceda-serv", branch = "master"}
whitenoise = "^6.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"