forked from pozyxLabs/Pozyx-Python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (35 loc) · 1.36 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
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup
from codecs import open
from pypozyx import VERSION as PYPOZYX_VERSION
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='pypozyx',
packages=['pypozyx', 'pypozyx.definitions', 'pypozyx.tools',
'pypozyx.structures'],
version=PYPOZYX_VERSION,
description='Python library for Pozyx devices',
install_requires=[
'pyserial>=3.0'
],
long_description=long_description,
author='Laurent Van Acker',
license='GPLv3',
author_email='[email protected]',
url='https://github.com/pozyxLabs/Pozyx-Python-library',
download_url='https://github.com/pozyxLabs/Pozyx-Python-library/archive/v{}.tar.gz'.format(PYPOZYX_VERSION),
keywords=['pozyx', 'serial', 'positioning', 'localisation'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
],
)