-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.11 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
48
49
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smith-utils"
version = "0.1.0"
description = "A utility library for data cleaning and parsing."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Eiichi YAMAMOTO", email = "info@yeiichi.com" }
]
keywords = [
"csv",
"deduplication",
"data-filtering",
"file-organization",
"filtering",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = []
[project.optional-dependencies]
docs = [
"sphinx>=8,<9",
"furo>=2024.8.6",
]
[project.urls]
Homepage = "https://github.com/yeiichi/smith-utils"
Repository = "https://github.com/yeiichi/smith-utils"
Documentation = "https://urlcheck-smith.readthedocs.io/"
Changelog = "https://urlcheck-smith.readthedocs.io/en/latest/changelog.html"
[tool.setuptools.packages.find]
where = ["src"]