-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.7 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
[tool.poetry]
name = "trapdata"
version = "0.6.0"
description = "Companion software for automated insect monitoring stations"
authors = ["Michael Bunsen <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/RolnickLab/ami-data-manager"
repository = "https://github.com/RolnickLab/ami-data-manager"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
pillow = "^9.5.0"
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.0"
pydantic = "^2.5.0"
rich = "^13.3.3"
pandas = "^1.5.3"
sqlalchemy = ">2.0"
sqlalchemy-utils = "^0.40.0"
alembic = "^1.10.2"
psycopg2-binary = { version = "^2.9.5", optional = true }
sentry-sdk = "^1.18.0"
imagesize = "^1.4.1"
torch = "^2.1.0"
torchvision = "^0.16.0"
timm = "^0.6.13"
structlog = "^22.3.0"
kivy = { extras = ["base"], version = "^2.3.0" }
plyer = "^2.1.0"
pyobjus = [
{ version = "^1.2.1", platform = "darwin" },
{ version = "^1.2.1", platform = "linux" },
]
# [tool.poetry.group.dev.dependencies] # Can't install these dev deps with pip, so they're in the main deps
black = "^23.3.0"
flake8 = "^6.0.0"
ipython = "^8.11.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.21.0"
pytest = "*"
numpy = "^1.26.2"
pip = "^23.3.1"
pydantic-settings = "^2.1.0"
boto3 = "^1.33.0"
botocore = "^1.33.0"
mypy-boto3-s3 = "^1.29.7"
typer = "^0.12.3"
gradio = "^4.41.0"
[tool.pytest.ini_options]
asyncio_mode = 'auto'
[tool.isort]
profile = "black"
[tool.poetry.scripts]
trapdata = 'trapdata.ui.main:run'
trapdata-test = 'trapdata.tests.test_pipeline:process_deployments'
ami = 'trapdata.cli.base:cli'
# [tool.setuptools.package_data]
# trapdata = ["*.kv", "*.txt", "*.json", "*.ini", "*.md"]