Skip to content

Commit

Permalink
add setup.py (to publish to PyPi)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1fter committed May 11, 2019
1 parent c67a424 commit 600755d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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.1',
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'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
],
)

0 comments on commit 600755d

Please sign in to comment.