We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45a873 commit ca5645fCopy full SHA for ca5645f
library/setup.py
@@ -12,6 +12,14 @@ def run(self):
12
print("Compiling ws281x library...")
13
build_py.run(self)
14
15
+classifiers = ['Development Status :: 4 - Beta',
16
+ 'Operating System :: POSIX :: Linux',
17
+ 'License :: OSI Approved :: MIT License',
18
+ 'Intended Audience :: Developers',
19
+ 'Programming Language :: Python :: 3',
20
+ 'Topic :: Software Development',
21
+ 'Topic :: System :: Hardware']
22
+
23
setup(name = 'rpi_ws281x',
24
version = '5.0.0',
25
author = 'Jeremy Garff <[email protected]>, Phil Howard <[email protected]>',
@@ -20,6 +28,8 @@ def run(self):
28
long_description = open('README.rst').read() + "\n\n" + open('CHANGELOG.txt').read(),
29
license = 'MIT',
30
url = 'https://github.com/rpi-ws281x/rpi-ws281x-python/',
31
+ classifiers = classifiers,
32
+ python_requires = '>=3.6',
33
cmdclass = {'build_py':CustomInstallCommand},
34
packages = ['rpi_ws281x'],
35
ext_modules = [Extension('_rpi_ws281x',
0 commit comments