-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f394b34
commit f414eb1
Showing
7 changed files
with
60 additions
and
55 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,4 +1,6 @@ | ||
__pychache__/ | ||
*.pyc | ||
build/ | ||
dist/ | ||
aquosRemote.egg-info/ | ||
venv/ |
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
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 +0,0 @@ | ||
from aquos import * | ||
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# if [ -d "venv" ]; then | ||
# source venv/bin/activate | ||
# fi | ||
# | ||
python3 setup.py sdist bdist_wheel | ||
python2 setup.py sdist bdist_wheel | ||
|
||
pip install -r dev-requirements.txt --user | ||
|
||
twine upload dist/* |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
twine |
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 |
---|---|---|
|
@@ -4,42 +4,47 @@ | |
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
with open(path.join(here, "README.rst"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='aquosRemote', | ||
version='1.1.1', | ||
description='A small Python module for sending Remote Control Codes to your Sharp AQUOS Smart TV', | ||
name="aquosRemote", | ||
version="1.3.1", | ||
description="A small Python module for sending Remote Control Codes to your Sharp AQUOS Smart TV", | ||
long_description=long_description, | ||
url='https://github.com/thehappydinoa/aquosRemote', | ||
author='Aidan Holland (thehappydinoa)', | ||
author_email='[email protected]', | ||
url="https://github.com/thehappydinoa/aquosRemote", | ||
author="Aidan Holland (thehappydinoa)", | ||
author_email="[email protected]", | ||
|
||
keywords="aquos tv remote", | ||
|
||
packages=find_packages(exclude=["contrib", "docs", "tests"]), | ||
|
||
project_urls={ | ||
"Bug Reports": "https://github.com/thehappydinoa/aquosRemote/issues", | ||
"Say Thanks!": "http://saythanks.io/to/thehappydinoa", | ||
"Contribute!": "https://github.com/thehappydinoa/aquosRemote/pulls", | ||
"Follow Me!": "https://twitter.com/thehappydinoa/", | ||
}, | ||
|
||
classifiers=[ | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 4 - Beta', | ||
"Development Status :: 4 - Beta", | ||
|
||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
|
||
'License :: OSI Approved :: MIT License', | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
|
||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
|
||
keywords='aquos tv remote', | ||
|
||
packages=find_packages(exclude=['contrib', 'docs', 'tests']), | ||
|
||
project_urls={ | ||
'Bug Reports': 'https://github.com/thehappydinoa/aquosRemote/issues', | ||
'Say Thanks!': 'http://saythanks.io/to/thehappydinoa', | ||
'Contribute!': 'https://github.com/thehappydinoa/aquosRemote/pulls', | ||
'Follow Me!': 'https://twitter.com/thehappydinoa/', | ||
}, | ||
) |