-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (47 loc) · 1.69 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (47 loc) · 1.69 KB
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from pathlib import Path
current_path = Path(__file__).parent
long_description = (current_path / "README.md").read_text(encoding="utf-8")
requirements = (
"numpy",
"matplotlib",
# "scikit-image",
"progressbar2",
"requests",
"rtree"
)
dev_requirements = (
"numpy",
"pytest",
"pytest-runner",
"coverage"
)
setup (
name="tracklib",
version="0.8.4.1",
description="tracklib library provides a variety of tools, operators and functions to manipulate GPS trajectories",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/umrlastig/tracklib",
download_url= 'https://github.com/umrlastig/tracklib/archive/refs/tags/v0.8.4.zip',
author="Yann Méneroux, Marie-Dominique Van Damme",
author_email="todo@ign.fr",
keywords=['GPS track', 'Python library', 'Map-matching', 'Trajectory fusion', 'Synthetic trajectory', 'Segmenting GPS tracks', 'Summarizing GPS tracks', 'Stop positions', 'Kalman filter'],
license="Cecill-C",
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
],
packages = ['tracklib','tracklib.algo','tracklib.core','tracklib.io','tracklib.plot','tracklib.util','tracklib.resources','example'],
install_requires=requirements,
test_suite="tests",
extras_require={
"dev": dev_requirements
},
)