-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.25 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "filepattern"
dynamic = ["version"]
description = "Utilities for parsing files in a directory based on a file name pattern."
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MIT License"}
authors = [
{name = "Jesse McKinzie", email = "Jesse.McKinzie@axleinfo.com"},
{name = "Nick Schaub", email = "nick.schaub@nih.gov"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic",
]
[project.urls]
Documentation = "https://filepattern.readthedocs.io/en/latest/"
Source = "https://github.com/PolusAI/filepattern"
Homepage = "https://github.com/PolusAI/filepattern"
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
tag_regex = "^v(?P<version>[0-9]+\\.[0-9]+\\.[0-9]+)$"
write_to = "src/filepattern/_version.py"
write_to_template = """
# This file is auto-generated by setuptools-scm
__version__ = "{version}"
__version_tuple__ = {version_tuple}
"""