-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 1003 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
30
31
import setuptools
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text('utf-8')
setup(
name='CreaTeBME',
version='1.2.3',
author='Jonathan Matarazzi',
author_email='git@jonathanm.nl',
description='Python Package for interfacing the bluetooth IMU module for CreaTe M8 BME.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/CreaTe-M8-BME/CreaTeBME',
project_urls={
'Bug Tracker': 'https://github.com/CreaTe-M8-BME/CreaTeBME/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
python_requires='>=3.7',
install_requires=[
'bleak >= 0.22.1',
]
)