-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (34 loc) · 1.07 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
[build-system]
requires = ["setuptools", "requests"]
build-backend = "setuptools.build_meta"
[project]
name = "proxygrabkit"
authors = [
{ name="Jose Guerra Carmenate", email="joseguerracarmenate@gmail.com" },
]
description = "A collection of utilities to get free proxies"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: Proxy Servers",
"Topic :: Utilities",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"dataclasses",
"typing",
]
dynamic = ["readme", 'version']
#[project.scripts]
#my-script = "my_package.module:function"
[project.urls]
Homepage = "https://github.com/joseguerra3000/ProxyGrabKit"
Issues = "https://github.com/joseguerra3000/ProxyGrabKit/issues"
[tool.setuptools.dynamic]
version = {attr = "proxygrabkit.VERSION"}
readme = {file = ["README.md", "USAGE.rst"]}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)