forked from time4tea/gopro-dashboard-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (67 loc) · 1.89 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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
requires = [
"geotiler==0.14.7",
"gpxpy==1.5.0",
"geographiclib==1.52",
"pillow==9.4.0",
"pint==0.20.1",
"progressbar2==4.2.0",
"requests==2.28.2",
"fitdecode==0.10.0",
]
test_requirements = [
"pytest"
]
setup(
name="gopro-overlay",
version="0.91.0",
description="Overlay graphics dashboards onto GoPro footage",
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 :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
],
packages=[
"gopro_overlay",
"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',
},
)