-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (25 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
34 lines (25 loc) · 803 Bytes
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
[tool.poetry]
name = "rfc1751"
version = "1.0.0"
description = "Pure Python implementation of the binary-to-text encoding from RFC 1751, S/Key"
license = "MIT"
authors = [
"Remi Rampin <remi@rampin.org>",
]
readme = "README.md"
repository = "https://github.com/remram44/python-rfc1751"
keywords = ["binary", "encoding", "skey", "s/key", "rfc1751", "1751"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/remram44/python-rfc1751/issues"
[tool.poetry.dependencies]
python = "^3.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"