forked from andreasofthings/python-lightify
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed reference to other files from setup.py
- Loading branch information
thomas.friedel
committed
Nov 6, 2016
1 parent
38d4bf4
commit d6eadcf
Showing
1 changed file
with
1 addition
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
import os | ||
from setuptools import setup | ||
from setuptools.command.install import install | ||
from lightify import __version__ | ||
|
||
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() | ||
|
||
# allow setup.py to be run from any path | ||
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) | ||
|
||
|
||
setup( | ||
name='lightify', | ||
|
@@ -16,7 +7,7 @@ | |
include_package_data=True, | ||
license='BSD License', | ||
description='A library to work with OSRAM lightify.', | ||
long_description=README, | ||
long_description='A library to work with OSRAM lightify. Threadsafe.', | ||
url='https://github.com/tfriedel/python-lightify', | ||
author='Thomas Friedel', | ||
author_email='[email protected]', | ||
|