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

File tree

9 files changed

+34
-3
lines changed

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

Lines changed: 12 additions & 0 deletions
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: [email protected]
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

Lines changed: 11 additions & 0 deletions
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
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

motivate.egg-info/not-zip-safe

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

motivate.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
motivate

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setuptools==36.2.2

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 5 additions & 3 deletions
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='[email protected]',
1011
license='MIT',
11-
packages=['motivate'],
12+
keywords = ['motivation', 'quotes'],
13+
packages=find_packages(),
1214
zip_safe=False
1315
)

0 commit comments

Comments
 (0)