-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.68 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
[project]
name = "seaborn_extensions"
description = "Extensions of seaborn plots for biology"
license = {text = "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"}
authors = [
{name = "Andre Rendeiro", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
readme = "README.md"
keywords = ["seaborn_extensions"]
dynamic = ['version']
requires-python = ">=3.10"
dependencies = [
"numpy>=1.18.0,<2.0",
"pandas",
"matplotlib>=3.3.0,<4.0",
"seaborn>=0.11.1,<1.0",
"pingouin>=0.5.2,<1.0",
"tqdm",
"outdated"
]
[project.optional-dependencies]
dev = [
"wheel",
"sphinx_rtd_theme",
"flake8",
"tox",
"coverage",
"Sphinx",
"twine",
"pytest>=6.2.0,<7.0",
"watchdog",
]
[project.urls]
homepage = "https://github.com/afrendeiro/seaborn_extensions"
documentation = "https://github.com/afrendeiro/seaborn_extensions/blob/main/README.md"
repository = "https://github.com/afrendeiro/seaborn_extensions"
[build-system]
requires = ["setuptools_scm[toml]>=6.0"]
backend = "setuptools.build_meta"
[tool.setuptools]
license-files = [] # https://github.com/astral-sh/uv/issues/9513
[tool.setuptools_scm]
write_to = "seaborn_extensions/_version.py"
write_to_template = 'version = __version__ = "{version}"'
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"