forked from sbettid/GPSClean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.35 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.35 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
import setuptools
pkg_vars = {}
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("src/gpsclean/_version.py") as fp:
exec(fp.read(), pkg_vars)
setuptools.setup(
name="gpsclean",
version=pkg_vars['__version__'],
author="Davide Sbetti",
author_email="davide.sbetti@gmail.com",
description="An application to correct a GPS trace using machine learning techniques",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sbettid/GPSClean",
project_urls={
"Bug Tracker": "https://github.com/sbettid/GPSClean/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7, <3.10",
install_requires=[
"art==5.3",
"filterpy==1.4.5",
"geojson==2.5.0",
"gpxpy==1.4.2",
"tflite-runtime>=2.5.0.post1",
"scipy>=1.10.0",
"pyproj>=3.0.0",
"numpy>=1.20.0",
"matplotlib>=3.0.0",
],
package_data={
"gpsclean": ["data/*.tflite"],
},
entry_points={
'console_scripts': [
'gpsclean = gpsclean.main:main',
],
},
)