-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.08 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "rx7"
version = "4.0.0"
description = "Useful functions and methods are all gathered in one module"
license = {text = "LGPL"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
'colored==1.4.4',
'psutil',
'requests',
'pyautogui',
'keyboard',
'mouse',
'pyscreeze',
'pywin32 ; platform_system=="Windows"',
'win10toast ; platform_system=="Windows"',
]
classifiers = [
"Programming Language :: Python :: 3",
]
authors = [
{name = "Ramin-RX7", email = "rawmin.rx@gmail.com"},
]
keywords = ["shortcut", "collection"]
[project.optional-dependencies]
all = [
# 'whois',
]
[tool.setuptools]
packages = ["rx7"]
[project.urls]
"Homepage" = "https://github.com/Ramin-RX7/RX7-Lib"
"Bug Tracker" = "https://github.com/Ramin-RX7/RX7-Lib/issues"
documentation = "https://github.com/Ramin-RX7/RX7-Lib/wiki"
repository = "https://github.com/Ramin-RX7/RX7-Lib"
changelog = "https://github.com/Ramin-RX7/RX7-Lib/blob/master/CHANGELOG.md"