-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
91 lines (85 loc) · 2.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "oldmailconvert"
description = "Converts e-mail from UUPC/extended, CompuServe, MANTES et. al. to RFC822 format"
version = "3-dev"
readme = "README.md"
authors = [{name = "Dan Fandrich", email = "[email protected]"}]
license = {text = "GPLv2+"}
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Users",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Communications :: Email",
"Typing :: Typed",
]
requires-python = ">= 3.8"
dependencies = ["python-dateutil"]
[project.optional-dependencies]
dev = [
"flake8",
"flake8-pyproject",
"flake8-assertive",
"flake8-bugbear",
"flake8-builtins",
"flake8-classmethod-staticmethod",
"flake8-comprehensions",
"flake8-datetimez",
"flake8-deprecated",
"flake8-docstrings",
"flake8-get-chaining",
"flake8-if-statements",
"flake8-import-order",
"flake8-mutable",
"flake8-noqa",
"flake8-picky-parentheses",
"flake8-pie",
"flake8-plus",
"flake8-quotes",
"flake8-raise",
"flake8-return",
"flake8-simplify",
"flake8-super",
"flake8-warnings",
"pytype"
]
[project.urls]
Homepage = "https://github.com/dfandrich/oldmailconvert"
Repository = "https://github.com/dfandrich/oldmailconvert.git"
[project.scripts]
compuservecvt = "compuservecvt:main"
maillogcvt = "maillogcvt:main"
uupccvt = "uupccvt:main"
[tool.setuptools]
py-modules = [
"compuservecvt",
"maillogcvt",
"uupccvt",
]
script-files = [
"adddate",
"mantescvt",
]
license-files = ["COPYING"]
include-package-data = false
# flake8-pyproject must be installed for flake8 to use these settings
[tool.flake8]
max-line-length = 100
ignore = ["E741", "D100", "D101", "D102", "D103", "PAR101"]
blanks-before-imports = 1