-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.45 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "absplit"
version = "1.4.5"
description = "Generates A/B/n test groups"
readme = "README.md"
authors = [{name = "Cormac Rynne", email = "cormac.ry@gmail.com"}]
license = {file = "LICENSE"}
repository = "https://github.com/cormac-rynne/absplit"
requires-python = "<=3.11"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"absplit",
"a/b test",
"ab test",
"ab split",
"split",
'set formation',
'group formation'
]
dependencies = [
"pygad<=3.3.1",
"scikit-learn",
"numpy",
"pandas",
"seaborn"
]
[tool.flit.external-data]
directory = "images"
[project.urls]
Home = "https://github.com/cormac-rynne/absplit"
[tool.setuptools]
py-modules = ['absplit']