Skip to content

Commit

Permalink
updated egg info
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Parkin committed Jan 5, 2009
1 parent 94e9f31 commit a41aa81
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 16 deletions.
22 changes: 15 additions & 7 deletions schemaish.egg-info/PKG-INFO
@@ -1,10 +1,18 @@
Metadata-Version: 1.0
Name: schemaish
Version: 0.0dev
Summary: UNKNOWN
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: UNKNOWN
Version: 0.5dev
Summary: Schemaish is a simple schema library.
Home-page: http://ish.io/projects/show/schemaish
Author: Tim Parkin, Matt Goodall
Author-email: developers@ish.io
License: BSD
Description: Schemaish is a simple schema library that allow the construction and validation of python data structures.

Keywords: schema,validation
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development :: Libraries :: Python Modules
36 changes: 35 additions & 1 deletion schemaish.egg-info/SOURCES.txt
@@ -1,11 +1,45 @@
.gitignore
setup.cfg
setup.py
docs-build/.introduction.rst.swo
docs-build/Makefile
docs-build/conf.py
docs-build/index.rst
docs-build/introduction.rst
docs/doctrees/environment.pickle
docs/doctrees/index.doctree
docs/doctrees/introduction.doctree
docs/html/genindex.html
docs/html/index.html
docs/html/introduction.html
docs/html/modindex.html
docs/html/objects.inv
docs/html/search.html
docs/html/searchindex.js
docs/html/_sources/index.txt
docs/html/_sources/introduction.txt
docs/html/_static/contents.png
docs/html/_static/default.css
docs/html/_static/doctools.js
docs/html/_static/file.png
docs/html/_static/jquery.js
docs/html/_static/minus.png
docs/html/_static/navigation.png
docs/html/_static/plus.png
docs/html/_static/pygments.css
docs/html/_static/rightsidebar.css
docs/html/_static/searchtools.js
docs/html/_static/sphinxdoc.css
docs/html/_static/stickysidebar.css
docs/html/_static/traditional.css
schemaish/__init__.py
schemaish/attr.py
schemaish/type.py
schemaish.egg-info/PKG-INFO
schemaish.egg-info/SOURCES.txt
schemaish.egg-info/dependency_links.txt
schemaish.egg-info/entry_points.txt
schemaish.egg-info/not-zip-safe
schemaish.egg-info/requires.txt
schemaish.egg-info/top_level.txt
schemaish.egg-info/top_level.txt
schemaish/tests/test_attr.py
24 changes: 16 additions & 8 deletions setup.py
@@ -1,19 +1,27 @@
from setuptools import setup, find_packages
import sys, os

version = '0.0'
version = '0.5'

setup(name='schemaish',
version=version,
description="",
description="Schemaish is a simple schema library.",
long_description="""\
Schemaish is a simple schema library that allow the construction and validation of python data structures.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='',
author_email='',
url='',
license='',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='schema,validation',
author='Tim Parkin, Matt Goodall',
author_email='developers@ish.io',
url='http://ish.io/projects/show/schemaish',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit a41aa81

Please sign in to comment.