-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 1.04 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
[project]
name = "CrossRename"
version = "1.1.0"
authors = [
{ name="Emmanuel C. Jemeni", email="[email protected]" }
]
description = "Harmonize file names for Linux and Windows."
readme = "PYPI_README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["files", "rename", "linux", "windows", "transferring", "filename"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[project.scripts]
crossrename = "CrossRename.main:main"
[project.urls]
"Homepage" = "https://github.com/Jemeni11/CrossRename"
"Bug Tracker" = "https://github.com/Jemeni11/CrossRename/issues"
"Changelog" = "https://github.com/Jemeni11/CrossRename/blob/master/CHANGELOG.md"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"