Skip to content

Commit

Permalink
Merge branch 'pypi' of https://github.com/lepture/oauthlib into leptu…
Browse files Browse the repository at this point in the history
…re-pypi
  • Loading branch information
ib-lundgren committed Jul 9, 2013
2 parents 8f055a3 + 4502cd9 commit 66127c5
Showing 1 changed file with 29 additions and 7 deletions.
36 changes: 29 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# -*- coding: utf-8 -*-

import os
# Hack because logging + setuptools sucks.
try:
import multiprocessing
except ImportError:
pass

import sys

from os.path import dirname, join
from setuptools import setup, find_packages, Command

# Hack because logging + setuptools sucks.
import multiprocessing
from setuptools import setup, find_packages


def fread(fn):
Expand All @@ -30,10 +32,30 @@ def fread(fn):
author='Idan Gazit',
author_email='idan@gazit.me',
url='https://github.com/idan/oauthlib',
license='BSD',
packages=find_packages(exclude=('docs','tests','tests.*')),
platforms='any',
license=fread('LICENSE'),
packages=find_packages(exclude=('docs', 'tests', 'tests.*')),
test_suite='nose.collector',
tests_require=tests_require,
extras_require={'test': tests_require, 'rsa': rsa_require},
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)

0 comments on commit 66127c5

Please sign in to comment.