forked from pozyxLabs/Pozyx-Python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (27 loc) · 985 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
25
26
27
28
29
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='pypozyx',
packages=['pypozyx', 'pypozyx.definitions',
'pypozyx.structures', 'pypozyx.tests'],
version='0.2.0',
description='Python library for Pozyx',
author='Laurent Van Acker',
author_email='laurent@pozyx.io',
url='www.pozyx.io',
download_url='www.pozyx.io',
keywords=['pozyx', 'serial', 'positioning', 'localisation'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended audience :: End Users/Developers',
'Operating System :: OS independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Positioning :: Pozyx',
],
long_description="""\
Pozyx Python library, used to interface with the Pozyx without need of an arduino.
Currently supports USB (serial), planned I2C support.
Both Python 2 and 3 are supported.
"""
)