-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (40 loc) · 1.26 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
40
41
42
43
from setuptools import setup
__version__ = '0.0.8'
try:
import pypandoc
readme = pypandoc.convert_file('README.md', 'rst')
readme = readme.replace('\r', '')
except ImportError:
readme = "Please visit https://github.com/ruuvi-friends/simple-ruuvitag"
setup(
name='simple_ruuvitag',
version=__version__,
description='Find RuuviTag sensor beacons and get data from selected sensors',
long_description=readme,
url='https://github.com/ruuvi-friends/simple-ruuvitag',
download_url='https://github.com/ruuvi-friends/simple-ruuvitag/archive/v' +
__version__ + ".tar.gz",
author='Sergio Isidoro',
author_email='[email protected]',
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
keywords='RuuviTag BLE',
install_requires=[
'bleson==0.1.8',
'ruuvi_decoders==0.2.0'
],
license='MIT',
packages=['simple_ruuvitag', 'simple_ruuvitag.adaptors'],
include_package_data=True,
tests_require=[
'nose',
'mock'
],
test_suite='nose.collector',
zip_safe=True)