-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.38 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
[project]
name = "pyutils"
version = "0.0.14"
authors = [
{ name="Scott Gasch", email="scott.gasch@gmail.com" },
]
description = "Python Utilities"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"antlr4-python3-runtime==4.12.0",
"bitstring",
"cloudpickle",
"holidays",
"kazoo",
"overrides",
"pytz",
"requests",
]
[project.urls]
"Homepage" = "https://wannabe.guru.org/pydocs/pyutils/pyutils.html"
"Bug Tracker" = "https://github.com/scottgasch/pyutils/issues"
"Repository" = "https://github.com/scottgasch/pyutils"
"Documentation" = "https://wannabe.guru.org/pydocs/pyutils/pyutils.html"
"Changelog" = "https://github.com/scottgasch/pyutils/blob/main/release_notes.md"
[project.optional-dependencies]
dev = [
"black",
"coverage",
"flake8",
"pylint",
"sphinx"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"pyutils", "pyutils.collectionz", "pyutils.compress",
"pyutils.datetimes", "pyutils.files", "pyutils.parallelize",
"pyutils.search", "pyutils.security", "pyutils.typez"
]
[tool.setuptools.package-dir]
pyutils = "src/pyutils"