Skip to content

Commit

Permalink
Replaced distutils setup by setuptools setup. New release!
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentva committed Nov 24, 2017
1 parent 4f949b6 commit d505786
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyserial
pyserial>=3.0
24 changes: 16 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,37 @@
# -*- coding: utf-8 -*-
from distutils.core import setup
from os import path
from setuptools import setup
from codecs import open

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.structures', 'pypozyx'],
'pypozyx.structures'],
version='1.1.0',
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',
url='https://github.com/pozyxLabs/Pozyx-Python-library',
download_url='https://github.com/pozyxLabs/Pozyx-Python-library/archive/v1.0.tar.gz',
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',
],
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.
"""
)

0 comments on commit d505786

Please sign in to comment.