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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pygn"
authors = [
{name = "Cosimo Alfarano", email = "kalfa@debian.org"},
{name = "Matěj Cepl", email = "mcepl@cepl.eu"},
]
keywords=["nntp", "email", "gateway"]
readme = "README.md"
requires-python = ">=3.6"
license = {text = "GPL-3.0"}
classifiers = [
"Programming Language :: Python :: 3",
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'Topic :: Communications :: Usenet News',
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
dependencies = [
"rply",
]
dynamic = ["version", "description"]
[project.scripts]
pygm2n = "mail2news:main"
pygn2m = "news2mail:main"
[tool.setuptools.dynamic]
version = {attr = "mail2news.__version__"}
description = {attr = "mail2news.__description__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["*.py"]
exclude = ["setup.py"]
namespaces = false
|