forked from OpenAdaptAI/OpenAdapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
128 lines (118 loc) · 3.31 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[tool.poetry]
name = "openadapt"
version = "0.7.0"
description = "GUI Process Automation with Transformers"
authors = [
'Mustafa Abdulrahman <[email protected]>',
'Richard Abrich <[email protected]>',
'Avid Eslami <[email protected]>',
'Andrew Gorton <[email protected]>',
'Krish Patel <[email protected]>',
'Dian Rong <[email protected]>',
'Aaron Shah <[email protected]>',
'Jesica Susanto <[email protected]>',
'Angela Zhuo <[email protected]>',
'Owais Zahid <[email protected]>'
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
readme = "README.md"
repository = "https://github.com/mldsai/openadapt"
homepage = "https://openadapt.ai/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MLDSAI/OpenAdapt/issues"
[tool.poetry.dependencies]
python = "3.10.x"
atomacos = {git = "https://github.com/abrichr/atomacos.git", markers = "sys_platform == 'darwin'"}
pynput = {git = "https://github.com/abrichr/pynput.git"}
alembic = "1.8.1"
black = "23.3.0"
pygetwindow = {version = "<0.0.5", markers = "sys_platform == 'win32'"}
pywin32 = {version = "306", markers = "sys_platform == 'win32'"}
ascii-magic = "2.3.0"
bokeh = "2.4.3"
clipboard = "0.0.4"
deepdiff = {extras = ["optimize"], version = "^6.3.0"}
ascii_magic = "2.3.0"
dictalchemy3 = "1.0.0"
fire = "0.4.0"
ipdb = "0.13.11"
loguru = "0.6.0"
matplotlib = "3.6.2"
mss = "6.1.0"
openai = "0.27.5"
pandas = "2.0.0"
presidio_analyzer = "2.2.32"
presidio_anonymizer = "2.2.32"
presidio_image_redactor = "0.0.46"
pytesseract = "0.3.7"
pytest = "7.1.3"
rapidocr-onnxruntime = "1.2.3"
scikit-learn = "1.2.2"
scipy = "1.9.3"
sqlalchemy = "1.4.43"
tiktoken = "0.4.0"
torch = "^2.0.0"
tqdm = "4.64.0"
transformers = "4.29.2"
python-dotenv = "1.0.0"
pyinstaller = "^5.12.0"
setuptools-lint = "^0.6.0"
sphinx = "7.0.1"
nicegui = "1.2.16"
spacy = "^3.5.3"
fuzzywuzzy = "0.18.0"
segment-anything = "^1.0"
torchvision = "^0.15.2"
sumy = "0.11.0"
nltk = "3.8.1"
pywinauto = {version = "^0.6.8", markers = "sys_platform == 'win32'"}
flake8 = "^6.0.0"
flake8-docstrings = "^1.7.0"
moviepy = "1.0.3"
python-levenshtein = "^0.21.1"
flake8-annotations = "^3.0.1"
pre-commit = "^3.3.3"
pympler = "^1.0.1"
psutil = "^5.9.5"
pyobjc-framework-avfoundation = {version = "^9.2", markers = "sys_platform == 'darwin'"}
fastapi = "0.98.0"
[tool.poetry.dependencies.en_core_web_trf]
url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.5.0/en_core_web_trf-3.5.0.tar.gz"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
group_by_package = true
from_first = true
[tool.poetry.scripts]
visualize = "openadapt.visualize:main"
record = "openadapt.record:start"
replay = "openadapt.replay:start"
app = "openadapt.app.main:run_app"
[tool.black]
extend-exclude = '''
/(
| venv
| alembic
)/
'''
[tool.semantic_release]
version_variable = [
"openadapt/__init__.py:__version__"
]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
major_on_zero = false
branch = "main"
commit_subject = "chore(release): v{version}"
commit_version_number = true
upload_to_PyPI = false
upload_to_release = true
upload_to_repository = false
repository_url = "https://upload.pypi.org/legacy/"
build_command = "pip install poetry && poetry build"