-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 750 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wik"
authors = [{name = "Yash Singh", email = "mailmeatyashsingh@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.0"
dynamic = ["version", "description"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console"
]
dependencies = ["beautifulsoup4", "requests"]
[project.urls]
Home = "https://github.com/yashsinghcodes/wik"
[project.scripts]
wik = "wik.wik:arguments"
[project.optional-dependencies]
dev = ["flit"]
[tool.flit.module]
name = "wik"