-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
108 lines (103 loc) · 2.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
name = "riemapp"
description = "Manim powered complex mappings."
readme = "README.md"
authors = [
{ name = "Saransh Chopra", email = "[email protected]" },
{ name = "Agriya Khetarpal", email = "[email protected]" },
{ name = "Naman Priyadarshi", email = "[email protected]" },
{ name = "Onkar Mahapatra", email = "[email protected]" },
{ name = "Parth Tripathi", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dynamic = [
"version",
]
dependencies = [
"manim>=0.16",
]
optional-dependencies.dev = [
"pytest>=6",
"pytest-cov>=3",
]
optional-dependencies.docs = [
"markdown-callouts>=0.2",
"mkdocs>=1.3.1",
"mkdocs-include-exclude-files>=0.0.1",
"mkdocs-jupyter>=0.21",
"mkdocs-material>=8.3.9",
"mkdocstrings-python>=0.7.1",
"mkdocstrings-python-legacy>=0.2.3",
"pymdown-extensions>=9.5",
]
optional-dependencies.test = [
"pytest>=6",
"pytest-cov>=3",
]
urls."Bug Tracker" = "https://github.com/Saransh-cpp/riemapp/issues"
urls.Changelog = "https://riemapp.readthedocs.io/en/latest/changelog/"
urls.Discussions = "https://github.com/Saransh-cpp/riemapp/discussions"
urls.Documentation = "https://riemapp.readthedocs.io/"
urls.Homepage = "https://github.com/Saransh-cpp/riemapp"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "riemapp/version.py"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"-ra",
"--showlocals",
"--strict-markers",
"--strict-config",
]
xfail_strict = true
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning",
]
log_cli_level = "INFO"
testpaths = [
"tests",
]
[tool.mypy]
files = "riemapp"
python_version = "3.8"
strict = true
warn_return_any = false
show_error_codes = true
warn_unreachable = true
enable_error_code = [
"ignore-without-code",
"truthy-bool",
"redundant-expr",
]
disallow_untyped_defs = false
disallow_untyped_calls = false
disallow_subclassing_any = false
ignore_missing_imports = true