-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.45 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cappy"
dynamic = ["version"]
description = "CAchingProxyinPython is a file based python proxy based on Sharebear's simple python caching proxy"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.md" }
authors = [{ name = "Compile Inc", email = "dev@compile.com" }]
keywords = ["cappy", "proxy", "http", "cache"]
requires-python = ">=3.8"
dependencies = [
"fire>=0.1",
"requests[security]>=2.18",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: Proxy Servers",
]
[project.urls]
Homepage = "https://github.com/CompileInc/cappy"
Repository = "https://github.com/CompileInc/cappy"
Issues = "https://github.com/CompileInc/cappy/issues"
[project.scripts]
cappy = "cappy.cappy:cli"
[tool.hatch.version]
path = "cappy/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["cappy"]
[tool.hatch.publish.targets.testpypi]
url = "https://test.pypi.org/project/cappy/"
[tool.hatch.publish.targets.pypi]
url = "https://pypi.org/project/cappy/"