forked from interuss/implicitdict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.33 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
# Based on https://github.com/denkiwakame/py-tiny-pkg/blob/main/pyproject.toml
[build-system]
requires = [
"setuptools>=64",
"wheel", # for bdist package distribution
"setuptools_scm>=6.4", # for automated versioning
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.setuptools_scm]
write_to = "src/implicitdict/_version.py"
[project]
name = "implicitdict"
dynamic = ["version"]
authors = [
{ name="InterUSS Platform", email="[email protected]" },
]
description = "ImplicitDict base class that turns a subclass into a dict indexing attributes, making [de]serialization easy for complex typing-annotated data types."
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["arrow", "pytimeparse"]
[project.optional-dependencies]
dev = ["pytest==5.0.0", "pytest-cov[all]", "black==21.10b0"]
[project.urls]
"Homepage" = "https://github.com/interuss/implicitdict"
"Bug Tracker" = "https://github.com/interuss/implicitdict/issues"
[tool.black]
target-version = ['py39']
line-length = 120