-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.24 KB
/
pyproject.toml
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
[tool.poetry]
name = "django-bandits"
version = "0.1.6a"
description = "A package enabling multi-armed bandits for site optimization and Django."
authors = ["Christian <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/hubbs5/django-bandits"
packages = [{include = "django_bandits"}]
classifiers = [
"Framework :: Django",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
numpy = ">=1.18,<2.0"
django-waffle = "^4.0.0"
django = ">=3.2,<5.0"
scipy = ">=1.7,<=1.11.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.7.0"
pytest-dependency = "^0.5.1"
pytest-django = "^4.5.2"
pytest-mock = "^3.11.1"
coverage = "^7.3.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
django-allauth = "^0.55.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.test_settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
addopts = "--reuse-db"
django_find_project = false