-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.67 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
[project]
name = "pyfilebrowser"
dynamic = ["version", "dependencies"]
description = "Python module designed to streamline interactions with filebrowser"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: File Sharing"
]
keywords = ["filebrowser", "pydantic", "python-dotenv"]
requires-python = ">=3.11"
[tool.setuptools]
packages = [
"pyfilebrowser",
"pyfilebrowser.proxy",
"pyfilebrowser.modals",
"pyfilebrowser.squire",
"pyfilebrowser.proxy.templates"
]
[tool.setuptools.package-data]
"pyfilebrowser.proxy.templates" = ["warn.html", "error.html"]
[tool.setuptools.dynamic]
version = { attr = "pyfilebrowser.version" }
dependencies = { file = ["pyfilebrowser/requirements.txt"] }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["sphinx==5.1.1", "pre-commit", "recommonmark", "gitverse"]
[project.scripts]
pyfilebrowser = "pyfilebrowser:_cli"
[project.urls]
Homepage = "https://github.com/thevickypedia/pyfilebrowser"
Docs = "https://thevickypedia.github.io/pyfilebrowser/"
Source = "https://github.com/thevickypedia/pyfilebrowser"
"Bug Tracker" = "https://github.com/thevickypedia/pyfilebrowser/issues"
"Release Notes" = "https://github.com/thevickypedia/pyfilebrowser/blob/main/release_notes.rst"