-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.6 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
[project]
name = "pywebfs"
authors = [
{ name = "Franck Jouvanceau" },
]
maintainers = [
{ name = "Franck Jouvanceau" },
]
description = "Simple Python HTTP File Server"
dependencies = [
"cryptography>=40.0.2",
"python-daemon>=2.3.2",
]
dynamic=["version"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.6"
keywords = ["http", "fileserver", "browser", "explorer"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows ",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Clustering",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/joknarf/pywebfs"
Documentation = "https://github.com/joknarf/pywebfs/blob/main/README.md"
Repository = "https://github.com/joknarf/pywebfs.git"
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "pywebfs/version.py"
[project.scripts]
pywebfs = "pywebfs.pywebfs:main"