This repository was archived by the owner on Dec 20, 2018. It is now read-only.
File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 6
6
# Ignore import error and assume Python 3 which already has setuptools.
7
7
pass
8
8
9
+ from codecs import open
10
+ from os import path
11
+
12
+ here = path .abspath (path .dirname (__file__ ))
13
+
14
+ # Get the long description from the README file
15
+ with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
16
+ long_description = f .read ()
17
+
9
18
from setuptools import setup , find_packages
10
19
11
20
setup (name = 'Adafruit_TMP' ,
12
- version = '1.6.1 ' ,
21
+ version = '1.6.2 ' ,
13
22
author = 'Tony DiCola' ,
14
23
author_email = 'tdicola@adafruit.com' ,
15
24
description = 'Library for accessing the TMP006 & TMP007 non-contact temperature sensor on a Raspberry Pi or Beaglebone Black.' ,
16
25
license = 'MIT' ,
17
26
url = 'https://github.com/adafruit/Adafruit_Python_TMP/' ,
18
27
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.6.5' ],
19
28
install_requires = ['Adafruit-GPIO>=0.6.5' ],
20
- packages = find_packages ())
29
+ packages = find_packages (),
30
+
31
+ long_description = long_description ,
32
+ long_description_content_type = 'text/markdown' )
You can’t perform that action at this time.
0 commit comments