-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (50 loc) · 1.69 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
[build-system]
requires = ["setuptools >= 40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "diycrate"
version = "0.2.11.4a5"
authors=[{"email" = "[email protected]", "name"= "Jason Held"}]
dynamic = ['readme']
requires-python=">=3.6,<4"
urls={"Source"= "https://github.com/jheld/diycrate/", "Issues"= "https://github.com/jheld/diycrate/issues"}
description = "box.com for linux -- unofficial, based on python SDK"
keywords = ["cloud", "storage", "box.com", "sdk", "linux", "box"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"fastapi~=0.104.1",
"uvicorn~=0.24.0",
"python-multipart==0.0.6",
"boxsdk>=2.0,<3.0",
"pyinotify==0.9.6",
"redis~=3.3.0",
"httpx==0.22.0",
"pyopenssl>=16.0.0",
"python-dateutil",
"certbot==1.12.0",
"Send2Trash==1.8.0",
"urllib3==1.26.15",
]
[project.entry-points]
[project.entry-points.console_scripts]
diycrate_app = "diycrate.diycrate_app:main"
diycrate_server = "diycrate.server_app:main"
[project.optional-dependencies]
"dev" = ["ipython", "check-manifest", "black", "flake8", "pre-commit", "mypy"]
"systemd" = ["systemd-python"]
"ci" = ["python-digitalocean"]
"test" = ["tox", "check-manifest"]