Skip to content
This repository was archived by the owner on Mar 30, 2023. It is now read-only.

Commit ad95dd2

Browse files
committed
Move to pyproject.toml
1 parent 5dd4a1c commit ad95dd2

File tree

2 files changed

+41
-25
lines changed

2 files changed

+41
-25
lines changed

pyproject.toml

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
11
[build-system]
22
requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "powrap"
7+
description = "Find and properly reindent .po files."
8+
readme = "README.rst"
9+
authors = [
10+
{ name = "Julien Palard", email = "[email protected]" },
11+
]
12+
keywords = ["powrap", "po", "gettext", "i18n",]
13+
classifiers = [
14+
"Development Status :: 5 - Production/Stable",
15+
"Intended Audience :: Developers",
16+
"License :: OSI Approved :: MIT License",
17+
"Natural Language :: English",
18+
"Programming Language :: Python :: 3",
19+
]
20+
requires-python = ">= 3.7"
21+
dependencies = [
22+
"tqdm",
23+
]
24+
dynamic = [
25+
"version",
26+
]
27+
28+
[project.license]
29+
text = "MIT License"
30+
31+
[project.urls]
32+
Homepage = "https://github.com/AFPy/powrap"
33+
34+
[project.scripts]
35+
powrap = "powrap.powrap:main"
36+
37+
[tool.setuptools]
38+
packages = [
39+
"powrap",
40+
]
41+
include-package-data = false
42+
43+
[tool.setuptools.dynamic.version]
44+
attr = "powrap.__version__"

setup.cfg

-25
This file was deleted.

0 commit comments

Comments
 (0)