forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.19 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools ~= 65.5", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-algorithms"
description = "All algorithms implemented in Python"
version = "1.0.0"
authors = [
{ name = "Christian Clauss", email = "[email protected]" },
{ name = "Dhruv Manilawala", email = "[email protected]" },
{ name = "John Law", email = "[email protected]" }
]
dependencies = [
"beautifulsoup4",
"fake_useragent",
"keras",
"lxml",
"matplotlib",
"numpy",
"opencv-python",
"pandas",
"pillow",
"projectq",
"qiskit",
"requests",
"rich",
"scikit-fuzzy",
"sklearn",
"statsmodels",
"sympy",
"tensorflow",
"texttable",
"tweepy",
"xgboost",
"yulewalker"
]
[project.optional-dependencies]
dev = [
"pre-commit"
]
[tool.setuptools]
packages = [ ]
# py_modules = [ ] does not work!
[tool.pytest.ini_options]
markers = [
"mat_ops: mark a test as utilizing matrix operations.",
]
addopts = [
"--durations=10",
"--doctest-modules",
"--showlocals",
]
[tool.coverage.report]
omit = [".env/*"]
sort = "Cover"
#[report]
#sort = Cover
#omit =
# .env/*
# backtracking/*