Skip to content

Commit

Permalink
updated setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKjartansson committed Jun 10, 2012
1 parent d999886 commit 9e32b9b
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions setup.py
@@ -1,23 +1,37 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
"""

try:
import multiprocessing
except ImportError:
pass

try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
from distutils.core import setup, find_packages # noqa

install_requires = [
'requests>=0.13.1',
]

tests_require = [
'nose>=1.1.2',
]

setup(
name = "korta",
version = "0.1.3",
packages = find_packages(),
install_requires = [
'pycurl',
],
package_data = {
'korta': ['certs/*.pem', 'certs/*.crt'],
name="korta",
version="0.1.4",
packages=find_packages(),
install_requires=install_requires,
package_data={
'korta': ['certs/*.pem'],
},
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='nose.collector',
author="Stefan Kjartansson",
author_email="esteban.supreme@gmail.com",
description="Korta Client library",
Expand Down

0 comments on commit 9e32b9b

Please sign in to comment.