-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.06 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pycryptomator"
dynamic=["version"]
description = "Access a Cryptomator V8 vault with pure Python"
readme = "README.md"
requires-python = ">=3.0"
license = {file = "LICENSE"}
keywords = ["cryptomator", "python", "crypto", "encryption", "security", "privacy", "cryptography", "vault"]
authors = [
{name = "maxpat78", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pycryptodome>=3.21"
]
[project.urls]
"Homepage" = "https://github.com/maxpat78/pycryptomator"
"Source" = "https://github.com/maxpat78/pycryptomator"
[project.scripts]
pycryptomator = "pycryptomator:__main__"
[tool.setuptools]
packages = ["pycryptomator", "pycryptomator.w32lex"]
package-data = {"pycryptomator" = ["*.txt"]}
[tool.setuptools.dynamic]
version = {attr = "pycryptomator.__init__.__version__"}