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

Commit bb48720

Browse files
committed
Ready for PyPi
1 parent 24d4701 commit bb48720

9 files changed

+34
-3
lines changed

dist/motivate-0.1.tar.gz

1.83 KB
Binary file not shown.

motivate.egg-info/PKG-INFO

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Metadata-Version: 1.1
2+
Name: motivate
3+
Version: 0.1
4+
Summary: A simple script to print random motivational quotes.
5+
Home-page: https://github.com/mubaris/motivate
6+
Author: mubaris
7+
Author-email: mubarishassannk@gmail.com
8+
License: MIT
9+
Download-URL: https://github.com/mubaris/motivate/archive/0.1.tar.gz
10+
Description: UNKNOWN
11+
Keywords: motivation,quotes
12+
Platform: UNKNOWN

motivate.egg-info/SOURCES.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
setup.cfg
2+
setup.py
3+
motivate/__init__.py
4+
motivate/find_dupes.py
5+
motivate/motivate.py
6+
motivate/unique_quotes.py
7+
motivate.egg-info/PKG-INFO
8+
motivate.egg-info/SOURCES.txt
9+
motivate.egg-info/dependency_links.txt
10+
motivate.egg-info/not-zip-safe
11+
motivate.egg-info/top_level.txt
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

motivate.egg-info/not-zip-safe

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

motivate.egg-info/top_level.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
motivate

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setuptools==36.2.2

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name='motivate',
5-
version='0.1',
5+
version='0.2',
66
description='A simple script to print random motivational quotes.',
77
url='https://github.com/mubaris/motivate',
8+
download_url='https://github.com/mubaris/motivate/archive/0.1.tar.gz',
89
author='mubaris',
910
author_email='mubarishassannk@gmail.com',
1011
license='MIT',
11-
packages=['motivate'],
12+
keywords = ['motivation', 'quotes'],
13+
packages=find_packages(),
1214
zip_safe=False
1315
)

0 commit comments

Comments
 (0)