Skip to content

Commit

Permalink
closes gh-4 Add setup.py to build a package
Browse files Browse the repository at this point in the history
  • Loading branch information
fcuny committed Feb 12, 2012
1 parent 96a7ae5 commit 3c379bd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup

import httpclient

setup(
name='httpclient',
version=httpclient.__version__,
description='HTTP Client library for Python',
long_description=open('README.rst').read(),
author='Franck Cuny',
author_email='franck.cuny@gmail.com',
url='https://github.com/franckcuny/httpclient',
packages=['httpclient'],
license='MIT',
tests_require=['coverage', 'nose', 'unittest2', 'pep8'],
install_requires=['http', 'urllib3'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
]
)

0 comments on commit 3c379bd

Please sign in to comment.