Skip to content

Commit ca5645f

Browse files
committed
Add classifiers, require Python >3.6.
1 parent b45a873 commit ca5645f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

library/setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ def run(self):
1212
print("Compiling ws281x library...")
1313
build_py.run(self)
1414

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+
1523
setup(name = 'rpi_ws281x',
1624
version = '5.0.0',
1725
author = 'Jeremy Garff <[email protected]>, Phil Howard <[email protected]>',
@@ -20,6 +28,8 @@ def run(self):
2028
long_description = open('README.rst').read() + "\n\n" + open('CHANGELOG.txt').read(),
2129
license = 'MIT',
2230
url = 'https://github.com/rpi-ws281x/rpi-ws281x-python/',
31+
classifiers = classifiers,
32+
python_requires = '>=3.6',
2333
cmdclass = {'build_py':CustomInstallCommand},
2434
packages = ['rpi_ws281x'],
2535
ext_modules = [Extension('_rpi_ws281x',

0 commit comments

Comments
 (0)