-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (49 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kolmogorov-abacus"
description = "A/B experiments planning and evaluation tool"
readme = "README.md"
authors = [
{name = "Vadim Glukhov", email = "educauchy@gmail.com"},
{name = "Egor Shishkovets", email = "egor.shishkovets@glowbyteconsulting.com"},
{name = "Dmitry Zabavin", email = "dmitriy.zabavin@glowbyteconsulting.com"},
]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
keywords = [
"A/B",
"experiments",
"OCE",
"online controlled experiment",
"ab test",
"experiment design"
]
dynamic = ["version", "dependencies"]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://kolmogorov-abacus.readthedocs.io/"
Repository = "https://github.com/kolmogorov-lab/abacus/"
Ecosystem = "https://kolmogorov.ai/"
[tool.setuptools.dynamic]
version = {file = ["abacus/VERSION"]}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
exclude = ["*.docs", "*.docs.*", "docs.*", "docs", "*docs*",
"*.examples", "*.examples.*", "examples.*", "examples", "*examples*",
"*.tests", "*.tests.*", "tests.*", "tests", "*tests*",
"*.venv11", "*.venv11.*", "venv11.*", "venv11", "*venv11*",
"*.venv8", "*.venv8.*", "venv8.*", "venv8", "*venv8*"]
[tool.pytest.ini_options]
markers = [
"smoke",
]