forked from urwen/temper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 loc) · 778 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
import os
import setuptools
own_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(own_dir, 'README.md')) as f:
long_description = f.read()
setuptools.setup(
name='temper-py',
version='0.0.4',
author='urwen',
description='Reads temperature data from misc. "TEMPer" devices with minimal dependencies',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ccwienk/temper',
py_modules=['temper'],
install_requires=['pyserial'],
entry_points={'console_scripts': ['temper = temper:main']},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
],
)