-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "spec_cleaner"
dynamic = ["version"]
authors = [
{name = "Daniel García Moreno", email = "[email protected]"},
{name = "Kristyna Streitova", email = "[email protected]"},
{name = "Tomáš Chvátal", email="[email protected]"},
]
description = "RPM .spec files cleaner"
readme = "README.md"
keywords = ["SUSE", "RPM", ".spec", "cleaner"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Text Processing"
]
dependencies = [
"python-rpm-spec"
]
[tool.setuptools]
packages = ["spec_cleaner"]
platforms = ["Linux"]
[tool.setuptools.data-files]
"lib/obs/service/" = ["obs/*"]
"share/spec-cleaner" = ["data/*"]
[project.scripts]
spec-cleaner = "spec_cleaner:main"
[project.urls]
Homepage = "https://github.com/rpm-software-management/spec-cleaner"
Repository = "https://github.com/rpm-software-management/spec-cleaner.git"
Issues = "https://github.com/rpm-software-management/spec-cleaner/issues"
[tool.setuptools.dynamic]
version = {attr = "spec_cleaner.__version__"}
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-xdist"
]