-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (41 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "MVim"
description = "Tool to rename files using vim to edit their names"
readme = "README.md"
requires-python = ">=3.6"
license = { file="LICENCE" }
dynamic = [ "version" ]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
]
[[project.authors]]
name = "Élie Bouttier"
email = "elie+mvim@bouttier.eu"
[project.urls]
Source = "https://github.com/bouttier/mvim"
Tracker = "https://github.com/bouttier/mvim/issues"
[project.scripts]
"mvim" = "mvim.main:main"
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=7.0.0",
]
build-backend = "setuptools.build_meta"
[tools.setuptools]
package_dir = [
{ ""="src" },
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.black]
line-length = 99