-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
61 lines (54 loc) · 1.59 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
[tool.poetry]
name = 'blitzortung'
version = '1.9.0'
description = 'blitzortung.org python modules'
authors = ["Andreas Würl <andi@tryb.de>"]
license = "Apache-2.0"
#classifiers = [
# 'Development Status :: 4 - Beta',
# 'Environment :: Console',
# 'Environment :: Plugins',
# 'Intended Audience :: Developers',
# 'Intended Audience :: Education',
# 'Intended Audience :: Science/Research',
# 'License :: OSI Approved :: Apache Software License',
# 'Natural Language :: English',
# 'Operating System :: OS Independent',
# 'Topic :: Scientific/Engineering :: Atmospheric Science',
# 'Topic :: Scientific/Engineering :: GIS',
# 'Topic :: Software Development :: Libraries :: Python Modules',
# 'Topic :: Utilities',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.9',
# 'Programming Language :: Python :: 3.10',
# 'Programming Language :: Python :: 3.11',
# 'Programming Language :: Python :: 3.12',
#]
[tool.poetry.dependencies]
python = "^3.9"
twisted = "^24.7.0"
requests = "^2.32.3"
fasteners = "^0.19"
shapely = "^2.0.6"
pyproj = "^3.6.1"
psycopg2 = "^2.9.9"
injector = "^0.22.0"
[tool.poetry.group.dev.dependencies]
assertpy = "^1.1"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-benchmark = "^4.0.0"
mock = "^5.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.optional-dependencies]
tests = [
'pytest-cov',
'pytest-benchmark',
'mock',
'assertpy',
'backports.zoneinfo; python_version < "3.9"',
]
[project.urls]
homepage = 'https://github.com/wuan/bo-python'