Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
Ready for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
mubaris committed Oct 19, 2017
1 parent 24d4701 commit bb48720
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 3 deletions.
Binary file added dist/motivate-0.1.tar.gz
Binary file not shown.
12 changes: 12 additions & 0 deletions motivate.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Metadata-Version: 1.1
Name: motivate
Version: 0.1
Summary: A simple script to print random motivational quotes.
Home-page: https://github.com/mubaris/motivate
Author: mubaris
Author-email: mubarishassannk@gmail.com
License: MIT
Download-URL: https://github.com/mubaris/motivate/archive/0.1.tar.gz
Description: UNKNOWN
Keywords: motivation,quotes
Platform: UNKNOWN
11 changes: 11 additions & 0 deletions motivate.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
setup.cfg
setup.py
motivate/__init__.py
motivate/find_dupes.py
motivate/motivate.py
motivate/unique_quotes.py
motivate.egg-info/PKG-INFO
motivate.egg-info/SOURCES.txt
motivate.egg-info/dependency_links.txt
motivate.egg-info/not-zip-safe
motivate.egg-info/top_level.txt
1 change: 1 addition & 0 deletions motivate.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions motivate.egg-info/not-zip-safe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions motivate.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
motivate
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
setuptools==36.2.2
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='motivate',
version='0.1',
version='0.2',
description='A simple script to print random motivational quotes.',
url='https://github.com/mubaris/motivate',
download_url='https://github.com/mubaris/motivate/archive/0.1.tar.gz',
author='mubaris',
author_email='mubarishassannk@gmail.com',
license='MIT',
packages=['motivate'],
keywords = ['motivation', 'quotes'],
packages=find_packages(),
zip_safe=False
)

0 comments on commit bb48720

Please sign in to comment.