-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathsetup.py
76 lines (70 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README-PYPI.md").read_text()
requires = [
"pillow==10.1.0",
"pint==0.22",
"geotiler==0.15",
"gpxpy==1.6.1",
"fitdecode==0.10.0",
"geographiclib==1.52",
"progressbar2==4.2.0",
"requests==2.31.0",
"sqlitedict==2.1.0",
]
test_requirements = [
"pytest"
]
setup(
name="gopro-overlay",
version="0.126.0",
description="Overlay graphics dashboards onto GoPro footage, or create videos from GPX or FIT files",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/time4tea/gopro-dashboard-overlay",
author="James Richardson",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
],
packages=[
"gopro_overlay",
"gopro_overlay.gpmf",
"gopro_overlay.gpmf.visitors",
"gopro_overlay.icons",
"gopro_overlay.layouts",
"gopro_overlay.widgets",
"gopro_overlay.widgets.cairo",
],
install_requires=requires,
tests_require=test_requirements,
scripts=[
"bin/gopro-contrib-data-extract.py",
"bin/gopro-cut.py",
"bin/gopro-dashboard.py",
"bin/gopro-extract.py",
"bin/gopro-join.py",
"bin/gopro-layout.py",
"bin/gopro-rename.py",
"bin/gopro-to-csv.py",
"bin/gopro-to-gpx.py",
"bin/gopro-debug.py",
],
python_requires=">=3.10",
include_package_data=True,
entry_points={
"console_scripts": []
},
project_urls={
'Source': 'https://github.com/time4tea/gopro-dashboard-overlay',
},
)