-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (27 loc) · 1.08 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
# setup.py
# This file is part of gnssr_raspberry.
# Author Roelof Rietbroek ([email protected]), 2022
import setuptools
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gnssr_raspberry",
author="Roelof Rietbroek",
author_email="[email protected]",
version="1.0",
description="Tools to log and upload nmea messages on a raspberry-pi with GNSS pi-hat or similar on the serial port",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ITC-Water-Resources/gnssr-raspberry",
packages=find_packages("."),
package_dir={"":"."},
scripts=['nmealogger.py'],
install_requires=['pyyaml','aiohttp'],
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Development Status :: Beta"]
)