-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "justdays"
version = "1.9.3"
description = "Makes working with days super easy"
readme = "README.md"
authors = [{ name = "HP Harmsen", email = "hp@harmsen.nl" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["days", "adding days", "difference between days", "range of days", "last Monday"]
dependencies = [
"python-dateutil",
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["black", "pytest", "build", "twine", "nox"]
[project.urls]
Homepage = "https://github.com/hpharmsen/justdays"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["justdays"] # package names should match these glob patterns (["*"] by default)
exclude = ["test_justdays"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)