-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from apiad/develop
Initial version
- Loading branch information
Showing
6 changed files
with
29 additions
and
8 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 +1,7 @@ | ||
# coding: utf8 | ||
|
||
""" | ||
# Auditorium | ||
""" | ||
|
||
from .show import Show |
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,5 +1,9 @@ | ||
# coding: utf8 | ||
|
||
""" | ||
A simple demo script for `auditorium`. | ||
""" | ||
|
||
from auditorium import Show | ||
|
||
show = Show(__name__) | ||
|
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
|
||
# TODO: Update version whenever changes | ||
VERSION = '0.2.2' | ||
VERSION = '0.1.0' | ||
|
||
|
||
def get_install_requirements(): | ||
|
@@ -34,14 +34,14 @@ def get_install_requirements(): | |
|
||
setup( | ||
# TODO: Change your library name and additional information down here | ||
name='python-starter-pack', | ||
packages=['python_starter_pack'], | ||
url='https://github.com/apiad/python-starter-pack', | ||
download_url='https://github.com/apiad/python-starter-pack/tarball/{}'.format(VERSION), | ||
name='auditorium', | ||
packages=['auditorium'], | ||
url='https://github.com/apiad/auditorium', | ||
download_url='https://github.com/apiad/auditorium/tarball/{}'.format(VERSION), | ||
license='MIT', | ||
author='Alejandro Piad', | ||
author_email='[email protected]', | ||
description='A starter pack for Python modules.', | ||
description='A Python-powered slideshow maker with steroids.', | ||
|
||
# This should automatically take your long description from Readme.md | ||
long_description=open('Readme.md').read(), | ||
|
@@ -53,7 +53,7 @@ def get_install_requirements(): | |
|
||
# TODO (Optional): Set your entry-points (CLI apps to register) here | ||
entry_points={ | ||
'console_scripts': ['python-starter-pack=python_starter_pack:say_hello'], | ||
# 'console_scripts': ['python-starter-pack=python_starter_pack:say_hello'], | ||
}, | ||
|
||
# TODO: Choose your classifiers carefully | ||
|
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 +1,8 @@ | ||
# coding: utf8 | ||
|
||
from auditorium import Show | ||
|
||
def test_show(): | ||
show = Show(__name__) | ||
|
||
assert show.current_slide is None |