Skip to content

Commit

Permalink
Made installable with Requirement already satisfied: pydogapi in /usr…
Browse files Browse the repository at this point in the history
…/local/lib/python2.7/site-packages
  • Loading branch information
c4collins committed Jul 21, 2017
1 parent 548d1b9 commit ea610bc
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/*
*.pyc
dist/*
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
pydogapi/__init__.py
File renamed without changes.
2 changes: 1 addition & 1 deletion pydogapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

from __future__ import absolute_import, division, print_function, unicode_literals # For Python 2
from __future__ import absolute_import, division, print_function, unicode_literals
import sys
if sys.version_info >= (3, 0):
# For Python 3
Expand Down
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
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'pydogapi',
packages = ['pydogapi'], # this must be the same as the name above
version = '0.1',
description = 'A python wrapper for dog CEOs Dog API',
author = 'Connor Collins',
author_email = 'connor.collins@gmail.com',
url = 'https://github.com/c4collins/pydogapi', # use the URL to the github repo
download_url = 'https://github.com/c4collins/pydogapi/archive/0.1.tar.gz',
keywords = ['dogs'], # arbitrary keywords
classifiers = [],
)

0 comments on commit ea610bc

Please sign in to comment.