-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (53 loc) · 1.72 KB
/
setup.py
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
current_path = os.path.abspath(os.path.dirname(__file__))
requirements = (
"numpy",
"matplotlib",
"scikit-image",
"progressbar2"
)
dev_requirements = (
"numpy",
"pytest",
"pytest-runner",
"coverage"
)
doc_requirements = (
"sphinx",
"sphinx_rtd_theme",
"recommonmark",
"sphinx-autodoc-typehints",
"nbsphinx",
"ipykernel",
"autodocsumm"
)
setup (
name="tracklib",
version="0.7.2",
description="tracklib library provides a variety of tools, operators and functions to manipulate GPS trajectories",
long_description="See https://github.com/umrlastig/tracklib",
url="https://github.com/umrlastig/tracklib",
download_url= 'https://github.com/umrlastig/tracklib/archive/refs/tags/v0.7.1.tar.gz',
author="Yann Méneroux, Marie-Dominique Van Damme",
author_email="todo@ign.fr",
keywords=['GPS track', 'Python library', 'Map-matching', 'Trajectory aggregation', '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',
'resources'],
install_requires=requirements,
test_suite="tests",
extras_require={
"dev": dev_requirements,
"doc": doc_requirements
},
)