-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "intellitext"
version = "0.2.2"
authors = [
{ name = "Jack Scott", email = "cloner.bl12@gmail.com" },
]
description = "IntelliText is a powerful, customizable keyboard macro and text expansion tool that helps you automate repetitive typing tasks and execute custom actions. It's designed to boost your productivity by allowing you to create shortcuts for frequently used text, commands, and actions."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"pyperclip>=1.8.2",
"pynput>=1.7.6",
]
[project.urls]
Homepage = "https://github.com/JackScott7/intellitext"
[tool.setuptools]
package-dir = {"intellitext" = "src"}
packages = ["intellitext"]
include-package-data = true
[project.scripts]
intellitext = "intellitext:main"