-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
24 lines (22 loc) · 922 Bytes
/
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
from setuptools import setup
with open("Readme.md", 'r') as f:
long_description = f.read()
setup(
name='GPS_Data_logger',
version='1.0',
description='This project implements a data logger which connects to a GPS device and stores the real-time location info to a SQLite database. It also allows to export saved data as GPX and KML files.',
author='Sabeur Lafi',
author_email='lafi.saber@gmail.com',
url="https://github.com/slafi",
license="MIT",
long_description=long_description,
packages=['gps_data_logger'],
keywords=["GPS data logger", "GPS tracking", "vk-162", "GPS logger", "GPX", "KML", "GPS tracking", "GPS"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License"
],
)