public
Description: A Python wrapper to the Phanfare API
Homepage: http://altmansoftware.lighthouseapp.com/projects/10199-pyphanfare/overview
Clone URL: git://github.com/paltman/pyphanfare.git
Click here to lend your support to: pyphanfare and make a donation at www.pledgie.com !
pyphanfare / setup.py
100644 28 lines (23 sloc) 0.895 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
 
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup
    
__version__ = '0.3'
 
setup(name = "pyphanfare",
      version = __version__,
      description = "Phanfare Public API Bindings",
      long_description="Python interface to Phanfare's Public API.",
      author = "Patrick Altman",
      author_email = "paltman@gmail.com",
      url = "http://github.com/paltman/pyphanfare/tree/master/",
      packages = [ 'pyphanfare', ],
      license = 'MIT',
      platforms = 'Posix; MacOS X; ',
      classifiers = [ 'Development Status :: 3 - Beta',
                      'Intended Audience :: Developers',
                      'License :: OSI Approved :: MIT License',
                      'Operating System :: OS Independent',
                      'Topic :: Internet',
                      ],
      )