-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (35 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aliasify"
description = "Replaces all entities in a text with aliases, so that you can ask chatGPT to modify your text without revealing confidential information. After chatGPT has modified your text, the aliases can be restored again."
version = "0.0.3"
authors = [
{ name = "Stephan Probst", email = "stephan.probst@qurios-it.de" },
{ name = "Qurios IT GmbH", email = "info@qurios-it.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["chatGPT"]
dependencies = [
"pynput>=1.7.6",
"pyperclip>=1.8.2",
"spacy>=3.5.0",
"win10toast>=0.9",
]
[project.optional-dependencies]
dev = [
"pylint==2.16.2",
"black==23.1.0",
]
[project.urls]
Homepage = "https://github.com/qurios-it/aliasify"
repository = "https://github.com/qurios-it/aliasify"
# add main function as script
[project.scripts]
aliasify = "aliasify.main:run"