-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a7648d
commit be0ab7c
Showing
5 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
endpoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|
@@ -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', | ||
|