public
Description: The itty-bitty Python web framework.
Homepage:
Clone URL: git://github.com/toastdriven/itty.git
commit  2bceb490224e93490c31d47c08bbfd27883209ce
tree    0349f8c92997f000d9d66741bdec88c24eb0c5ec
parent  020de8f22803873fec7adaa854c26988dac62bee
itty / setup.py
100644 28 lines (23 sloc) 0.668 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/env python
 
from distutils.core import setup
import os
from itty import __version__
 
long_desc = ''
 
try:
    long_desc = os.path.join(os.path.dirname(__file__), 'README.rst').read()
except:
    # The description isn't worth a failed install...
    pass
 
classifiers = ['License :: OSI Approved :: BSD License']
setup(
    name='itty',
    version='%s.%s.%s' % __version__,
    description='The itty-bitty Python web framework.',
    long_description=long_desc,
    author='Daniel Lindsley',
    author_email='daniel@toastdriven.com',
    url='http://github.com/toastdriven/itty/',
    py_modules=['itty'],
    license='BSD',
    classifiers=classifiers,
)