-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.9 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
[project]
name = "gros-upload"
version = "0.0.3"
description = "Encrypted file upload server"
readme = "README.md"
authors = [{name = "Leon Helwerda", email = "l.s.helwerda@liacs.leidenuniv.nl"}]
license = {text = "Apache 2.0"}
requires-python = ">=3.8"
dependencies = [
"CherryPy==18.9.0",
"gpg_exchange==0.0.7",
"keyring==25.2.1"
]
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: Apache Software License",
"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",
]
keywords = ["gpg encryption", "database importer", "secure upload"]
[project.scripts]
gros-upload = "encrypted_upload.__main__:main"
[project.urls]
"Homepage" = "https://gros.liacs.nl"
"PyPI" = "https://pypi.python.org/pypi/gros-upload"
"Source Code" = "https://github.com/grip-on-software/upload"
"Issues" = "https://github.com/grip-on-software/upload/issues"
"Pull Requests" = "https://github.com/grip-on-software/upload/pulls"
"CI: GitHub Actions" = "https://github.com/grip-on-software/upload/actions"
"CI: Coveralls" = "https://coveralls.io/github/grip-on-software/upload?branch=master"
"CI: SonarCloud" = "https://sonarcloud.io/project/overview?id=grip-on-software_upload"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["encrypted_upload"]
[tool.setuptools.package-data]
"encrypted_upload" = ["py.typed"]
[tool.mypy]
mypy_path = "typeshed"
[tool.pytest.ini_options]
testpaths = "test"
python_files = "*.py"