forked from portablesource/portablesource
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (32 loc) · 995 Bytes
/
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
[project.urls]
GitHub = "https://github.com/portablesource/portablesource"
Changelog = "https://github.com/portablesource/portablesource/releases"
Contact = "https://t.me/neuralchatik"
Download = "https://github.com/portablesource/portablesource/releases"
Homepage = "https://github.com/portablesource/portablesource"
[tool.hatch.version]
path = "portablesource/Version.py"
[project]
name = "portablesource"
dynamic = ["version"]
description = "Library for portable source!"
authors = [{name="NeuroDonu", email="112660822+NeuroDonu@users.noreply.github.com"}]
readme = "Readme.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"tqdm",
"requests",
]
[project.scripts]
portablesource = "portablesource.__main__:main"
[build-system]
requires = ["hatchling", "cmake"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"portablesource",
]
[tool.pyright]
exclude = [".venv/**"]
typeCheckingMode = "off"