-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 loc) · 1.54 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.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[tool.poetry]
name = "trajectory"
version = "0.1.1"
description = "Trajectory data lossy compression format based on Google's Encoded Polyline Algorithm Format"
authors = ["B Krishna Chaitanya <[email protected]>"]
readme = "README.rst"
license = "MIT"
packages = [
{ include = "trajectory" },
]
# 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.7",
"Programming Language :: Python :: 3.8",
"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", "mobility", "trajectory", "spatiotemporal"]
homepage = "https://github.com/adonmo/trajectory"
repository = "https://github.com/adonmo/trajectory"
documentation = "https://github.com/adonmo/trajectory"
[tool.poetry.dependencies]
python = ">=3.6"
six = "^1.14.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.1.0"
black = "^19.10b0"
pytest = "^5.3.5"
dephell = "0.7.9"
fissix = "^19.2b1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"