-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.29 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lmod-ingest"
version = "0.0.0" # Set by CI pipeline
description = "Data ingestion utility for loading Lmod usage logs into a database."
authors = ["Pitt Center for Research Computing"]
homepage = "https://github.com/pitt-crc/lmod_tracking"
repository = "https://github.com/pitt-crc/lmod_tracking"
license = "GPLv3"
readme = "README.md"
packages = [{ include = "lmod_ingest" }]
classifiers = [
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: System :: Monitoring",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.9"
alembic = "1.13.3"
asyncpg = "0.29.0"
pandas = "2.2.3"
python-dotenv = "1.0.1"
sqlalchemy = "2.0.35"
[tool.poetry.scripts]
lmod-ingest = "lmod_ingest.main:main"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
coverage = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = ">=0.23,<0.27"}