-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.17 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
[tool.poetry]
name = "labelsmith"
version = "0.0.1b4"
description = "A productivity suite for data annotators"
authors = ["K. LeBryce <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "labelsmith", from = "src"}]
[tool.poetry.dependencies]
python = "^3.9,<3.13"
pandas = "^2.2.2"
appdirs = "^1.4.4"
matplotlib = "^3.9.1"
cryptography = "^43.0.0"
mpld3 = "^0.5.10"
pyinstaller = "^6.9.0"
nltk = "^3.8.1"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
poetry = "^1.8.3"
black = "^24.4.2"
pyinstaller = "^6.5.0"
nuitka = "^2.4.2"
[tool.poetry.scripts]
shyft = "labelsmith.shyft.Shyft:main"
build-macos = "scripts.build_macos:build_shyft"
build-windows = "scripts.build_windows:build_shyft"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Homepage" = "https://github.com/kosmolebryce/labelsmith"
"Bug Tracker" = "https://github.com/kosmolebryce/labelsmith/issues"
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''