Skip to content

Commit

Permalink
Merge pull request #1 from apiad/develop
Browse files Browse the repository at this point in the history
Initial version
  • Loading branch information
apiad authored Nov 28, 2019
2 parents dd575bc + 70a3996 commit 2a30658
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 8 deletions.
6 changes: 6 additions & 0 deletions auditorium/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# coding: utf8

"""
# Auditorium
"""

from .show import Show
4 changes: 4 additions & 0 deletions auditorium/demo.py
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__)
Expand Down
4 changes: 4 additions & 0 deletions auditorium/show.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# coding: utf8

"""
This module includes the `Show` class and the main functionalities of `auditorium`.
"""

import base64
import io
from enum import Enum
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test:
make lint && pipenv run pytest --doctest-modules --cov=$(PROJECT) --cov-report=xml -v

lint:
pipenv run pylint $(PROJECT)
# pipenv run pylint $(PROJECT)

cov:
pipenv run codecov
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


# TODO: Update version whenever changes
VERSION = '0.2.2'
VERSION = '0.1.0'


def get_install_requirements():
Expand Down Expand Up @@ -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(),
Expand All @@ -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
Expand Down
7 changes: 7 additions & 0 deletions tests/test_module.py
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

0 comments on commit 2a30658

Please sign in to comment.