-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·35 lines (34 loc) · 1.2 KB
/
setup.py
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
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name='django-oauth-tokens',
version=__import__('oauth_tokens').__version__,
description='Application for getting, refreshing and storing OAuth access_tokens for Django standalone applications',
long_description=open('README.md').read(),
author='ramusus',
author_email='ramusus@gmail.com',
url='https://github.com/ramusus/django-oauth-tokens',
download_url='http://pypi.python.org/pypi/django-oauth-tokens',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
install_requires=[
'django',
'requests',
'requests_oauthlib',
'beautifulsoup4',
'django-taggit',
'django-annoying',
'distributedlock',
'simplejson',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)