-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (44 loc) · 1.32 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "tird"
version = "0.17.0"
license = { text = "CC0-1.0", url = "https://creativecommons.org/publicdomain/zero/1.0/" }
maintainers = [
{ name = "Alexey Avramov", email = "hakavlad@gmail.com" },
]
description = "A tool for encrypting files and hiding encrypted data"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = [
"encryption",
"hiding",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"pycryptodomex>=3.6.2",
"pynacl>=1.2.0",
]
requires-python = ">=3.9"
[project.urls]
"Bug Tracker" = "https://github.com/hakavlad/tird/issues"
"Discussions" = "https://github.com/hakavlad/tird/discussions"
"Documentation" = "https://github.com/hakavlad/tird/blob/main/README.md"
"Homepage" = "https://github.com/hakavlad/tird"
"Repository" = "https://github.com/hakavlad/tird"
[project.scripts]
tird = "tird.tird:main"