-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (84 loc) · 2.28 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (84 loc) · 2.28 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spectratact"
version = "0.1.0"
description = "Desktop application management tool with selective targeting and intelligent window orchestration"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "dhaneshbb", email = "dhaneshbb5@gmail.com"}
]
keywords = [
"spectratact", "desktop-management", "automation", "window-orchestration",
"application-control", "multi-platform", "electron", "desktop"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Systems Administration",
]
requires-python = ">=3.8"
dependencies = [
"psutil>=5.8.0",
"pywin32>=227",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pyflakes",
"pytest",
"pytest-cov",
]
build = [
"tomli>=1.2.0",
]
[project.urls]
Homepage = "https://github.com/dhaneshbb/spectratact"
Repository = "https://github.com/dhaneshbb/spectratact"
Issues = "https://github.com/dhaneshbb/spectratact/issues"
Changelog = "https://github.com/dhaneshbb/spectratact/blob/main/CHANGELOG.md"
Documentation = "https://github.com/dhaneshbb/spectratact/tree/main/docs"
[project.scripts]
spectratact = "spectratact.main:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["spectratact*"]
exclude = ["tests*", "*.tests", "*.tests.*"]
[tool.setuptools.package-data]
spectratact = ["py.typed"]
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| release
| \.bkup
| \.Release
| src/desktop
| node_modules
| __pycache__
)/
'''