-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 870 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
setup(name='QLed',
version='1.3.1',
description="An LED Widget for the PyQt4/5 Framework",
author="Rob Kent",
author_email="rob@gulon.co.uk",
url="https://github.com/jazzycamel/QLed",
py_modules=['QLed'],
license="MIT",
install_requires=['six'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
]
)