-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
72 lines (66 loc) · 2.27 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
70
71
72
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[tool.poetry]
name = "mobilitydb-sqlalchemy"
version = "0.4.1"
description = "MobilityDB extensions to SQLAlchemy"
readme = "README.rst"
license = "MIT"
authors = ["B Krishna Chaitanya <[email protected]>"]
packages = [
{ include = "mobilitydb_sqlalchemy" },
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering :: GIS",
]
keywords=["geo", "gis", "postgres", "mobilitydb", "sqlalchemy", "orm"]
homepage = "https://github.com/adonmo/mobilitydb-sqlalchemy"
repository = "https://github.com/adonmo/mobilitydb-sqlalchemy"
documentation = "https://mobilitydb-sqlalchemy.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.8,<4"
pandas = "^1.2.5"
sqlalchemy = "^1.3.18"
geoalchemy2 = "^0.8.4"
shapely = "^1.7.0"
movingpandas = {version = "^0.9rc3", optional = true}
sphinx = {version = "^2.3.1", optional = true}
sphinx-rtd-theme = {version = "^0.4.3", optional = true}
Jinja2 = {version = "<3.1", optional = true}
tomlkit = {version = "^0.5.8", optional = true}
pymeos = "^0.1.1"
urllib3 = "^1.26.9"
numpy = "^1.22.4"
[tool.poetry.dev-dependencies]
dephell = "^0.8.3"
fissix = "^20.5.1"
pytest = "^6.0.1"
psycopg2 = "^2.8.5"
pre-commit = "^2.6.0"
black = "^22.3.0"
mistune = "0.8.4"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "tomlkit", "Jinja2"]
# Currently installing the optional dependency of movingpandas
# using `poetry install -E movingpandas` doesn't work
# Check README.md for instructions on how to install it
movingpandas = ["movingpandas"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"