-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 744 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 744 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
#!/usr/bin/env python
from distutils.core import setup
import bind
setup(
name='bind',
version=bind.__version__,
description='A framework for creating web API bindings in Python',
author='Rafe Kettler',
author_email='rafe.kettler@gmail.com',
license='MIT',
url='http://www.github.com/RafeKettler/bind',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Libraries :: Application Frameworks',
]
requires=['httplib2'],
packages=['bind'],
)