Skip to content

Commit

Permalink
Create test output
Browse files Browse the repository at this point in the history
  • Loading branch information
DEV3L committed Feb 28, 2016
1 parent ea7c45e commit 701cd37
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
14 changes: 13 additions & 1 deletion setup.py
Expand Up @@ -9,5 +9,17 @@
url = 'https://github.com/DEV3L/python-tay-say',
download_url = 'https://github.com/DEV3L/python-tay-say/tarball/0.1',
keywords = ['testing', 'dev3l', 'taylor swift'], # arbitrary keywords
classifiers = [],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
entry_points={
'console_scripts': [
'tay_say = tay_say:print_lyric'
]},
)
8 changes: 8 additions & 0 deletions tay_say/__init__.py
@@ -1 +1,9 @@
__author__ = 'dev3l'


def print_lyric():
print("test")


if __name__ == "__main__":
print_lyric()

0 comments on commit 701cd37

Please sign in to comment.