github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/lib/python/setup.py (about)

     1  from setuptools import setup
     2  setup(
     3      name='camlistore-client',
     4      version='1.0.3dev',
     5      author='Brett Slatkin',
     6      author_email='bslatkin@gmail.com',
     7      maintainer='Jack Laxson',
     8      maintainer_email='jackjrabbit+camli@gmail.com',
     9      description="Client library for Camlistore.",
    10      url='http://camlistore.org',
    11      license='Apache v2',
    12      long_description='A convience library for python developers wishing to explore camlistore.',
    13      packages=['camli'],
    14      install_requires=['simplejson'],
    15      classifiers=['Environment :: Console', 'Topic :: Internet :: WWW/HTTP']
    16  )