-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.46 KB
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "leather"
version = "0.4.1"
authors = [{name = "Christopher Groskopf", email = "chrisgroskopf@gmail.com"}]
description = "Python charting for 80% of humans."
readme = "README.rst"
license = {text = "MIT"}
urls = {Homepage = "https://leather.readthedocs.io/"}
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"lxml>=3.6.0",
"cssselect>=0.9.1",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[tool.isort]
line_length = 119