-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 672 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 672 Bytes
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
29
30
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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
setup(
name='itty',
version='0.8.2',
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=[
'License :: OSI Approved :: BSD License'
],
)