Skip to content

Commit

Permalink
fix setup.py packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jaridmargolin committed Sep 4, 2013
1 parent 1a7648d commit be0ab7c
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 2 deletions.
17 changes: 17 additions & 0 deletions endpoints.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Metadata-Version: 1.0
Name: endpoints
Version: 0.6
Summary: Get an api up and running quickly
Home-page: http://github.com/firsopinion/endpoints
Author: Jay Marcyes
Author-email: [email protected]
License: MIT
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Programming Language :: Python :: 2.7
7 changes: 7 additions & 0 deletions endpoints.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
setup.py
endpoints/__init__.py
endpoints/reflection.py
endpoints.egg-info/PKG-INFO
endpoints.egg-info/SOURCES.txt
endpoints.egg-info/dependency_links.txt
endpoints.egg-info/top_level.txt
1 change: 1 addition & 0 deletions endpoints.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions endpoints.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
endpoints
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# http://docs.python.org/2/distutils/examples.html

import sys
from setuptools import setup
from setuptools import setup, find_packages
import ast

name = 'endpoints'
Expand All @@ -27,7 +27,7 @@
author_email='[email protected]',
url='http://github.com/firsopinion/{}'.format(name),
py_modules=[name],
packages=[name, '{}.reflection'.format(name)],
packages=find_packages(),
license="MIT",
classifiers=[ # https://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit be0ab7c

Please sign in to comment.