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
|
import setuptools
REQUIRES = [
'requests'
]
with open("README.md") as fh:
long_description = fh.read()
setuptools.setup(
name='sanix',
version='1.0.6',
description=
'Python wrapper for getting measurements data from Sanix devices.',
long_description=long_description,
url='https://github.com/tomaszsluszniak/sanix_py',
license='MIT',
packages=['sanix'],
install_requires=REQUIRES,
python_requires='>=3.10.0',
author='Tomasz Słuszniak',
author_email='tomasz.sluszniak@gmail.com',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
test_suite='tests',
)
|