File tree 2 files changed +29
-3
lines changed
2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1
- # Adafruit Python TCS34725
1
+ # DEPRECATED LIBRARY Adafruit Python TCS34725
2
+
3
+ This library has been deprecated!
4
+
5
+ We are now only using our CircuitPython sensor libraries in Python.
6
+
7
+ We are leaving the code up for historical/research purposes but archiving the
8
+ repository.
9
+
10
+ Check out this guide for using the TCS34725 with Python!
11
+
12
+ https://learn.adafruit.com/adafruit-color-sensors/python-circuitpython
13
+
14
+ ----
15
+
2
16
Python code to use the TCS34725 color sensor with the Raspberry Pi & ; BeagleBone Black.
3
17
4
18
## Installation
Original file line number Diff line number Diff line change 8
8
9
9
from setuptools import setup , find_packages
10
10
11
+ from codecs import open
12
+ from os import path
13
+
14
+ here = path .abspath (path .dirname (__file__ ))
15
+
16
+ # Get the long description from the README file
17
+ with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
18
+ long_description = f .read ()
19
+
11
20
classifiers = ['Development Status :: 4 - Beta' ,
12
21
'Operating System :: POSIX :: Linux' ,
13
22
'License :: OSI Approved :: MIT License' ,
18
27
'Topic :: System :: Hardware' ]
19
28
20
29
setup (name = 'Adafruit_TCS34725' ,
21
- version = '1.0.1 ' ,
30
+ version = '1.0.2 ' ,
22
31
author = 'Tony DiCola' ,
23
32
author_email = 'tdicola@adafruit.com' ,
24
33
description = 'Python code to use the TCS34725 color sensor with the Raspberry Pi & BeagleBone Black.' ,
27
36
url = 'https://github.com/adafruit/Adafruit_Python_TCS34725/' ,
28
37
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.6.5' ],
29
38
install_requires = ['Adafruit-GPIO>=0.6.5' ],
30
- packages = find_packages ())
39
+ packages = find_packages (),
40
+
41
+ long_description = long_description ,
42
+ long_description_content_type = 'text/markdown' )
You can’t perform that action at this time.
0 commit comments