-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 loc) · 1.45 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
[tool.poetry]
name = "geopephub"
version = "0.1.1"
description = "Pipeline for processing GEO data and uploading it to the PEPHub"
authors = ["Oleksandr Khoroshevskyi <khorosh@virginia.edu>"]
readme = "README.md"
homepage = "https://github.com/pepkit/geoephub"
documentation = "https://github.com/pepkit/geoephub"
repository = "https://github.com/pepkit/geoephub"
license = "BSD-2-Clause license"
exclude = []
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
]
[tool.poetry.dependencies]
python = "^3.8"
geofetch = "^0.12.7"
pepdbagent= "^0.11.1"
#pepdbagent= { git = "https://github.com/pepkit/pepdbagent.git", branch = "dev" }
SQLAlchemy = ">=2.0.0,<2.1.0"
logmuse= "^0.2.7"
coloredlogs= "^15.0.1"
peppy= "^0.40.7"
pephubclient= "^0.4.4"
#pephubclient= { git = "https://github.com/pepkit/pephubclient.git", branch = "dev" }
pydantic= "^2.5.0"
hypothesis= "^6.112.0"
python-dotenv= "^1.0.1"
typer= "^0.9.0"
boto3="^1.34.29"
botocore="^1.34.29"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "init"
[tool.poetry.scripts]
geopephub = "geopephub.main:main"