-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 965 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 965 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
26
27
28
29
#import ez_setup
#ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'scratch_hue_extension',
packages = find_packages(),
# py_modules = ['ez_setup'],
scripts = ['scratch_hue_helper'],
install_requires = ['phue', 'flask', 'requests'],
package_data = {
'': ['COPYING.txt', 'LICENSE', 'README.md', 'scratch_hue_extension.s2e', 'setup.cfg']
},
version = '0.0.13',
description = 'Provides a http helper app to allow Scratch 2 to control Philips Hue lights',
author='Chris Proctor',
author_email='chris.proctor@gmail.com',
url='http://mrproctor.net/scratch',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Environment :: Console',
'Intended Audience :: Education',
'Topic :: Education'
]
)