-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
100 lines (97 loc) · 2.98 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
setup(
name="boatface",
version="0.0.2",
author="Holger Marseille",
author_email="ml@argonauta.studio",
maintainer="Andreas Motl",
maintainer_email="andreas.motl@panodata.org",
url="https://github.com/maritime-labs/boatface",
description="Instrumentation panel for displaying NMEA and SignalK telemetry data",
long_description=README,
download_url="https://pypi.org/project/boatface/",
packages=find_packages(),
include_package_data=True,
package_data={
"boatface": [
"assets/*.png",
"assets/*.otf",
],
},
license="AGPL-3.0, EUPL-1.2",
keywords=[
"instrumentation",
"navigation",
"panel",
"display",
"opencpn",
"signalk",
"openplotter",
"nmea",
"nmea-0183",
"sailing",
"sensor",
"environmental-monitoring",
"e-ink",
"kindle",
"kobo",
"tolino",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Natural Language :: English",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Topic :: System :: Emulators",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
entry_points={
"console_scripts": [
"boatface = boatface.cli:cli",
],
},
install_requires=[
"asyncio-dgram>2,<3",
"pynmea2>1,<2",
"Pillow<10",
"click<9",
"dataclasses;python_version<='3.6'",
"importlib_metadata;python_version<='3.7'",
],
extras_require={
"ui": [
"pyglet<2",
"pysdl2<1",
],
"test": [
"pytest<8",
"pytest-cov<4",
],
},
)