-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (35 loc) · 1.01 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
from glob import glob
from os.path import (
basename,
splitext,
)
from setuptools import setup, find_packages
NAME = 'huegely'
PACKAGES = find_packages('src')
DESCRIPTION = 'Python Philips Hue Library'
URL = "https://github.com/kirberich/huegely"
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
AUTHOR = 'Robert Kirberich'
setup(
name=NAME,
version='0.1.4',
packages=PACKAGES,
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
# metadata for upload to PyPI
author=AUTHOR,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords=["Philips Hue"],
url=URL,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=['requests'],
include_package_data=True,
)