forked from bsod90/django-token-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (30 loc) · 1.01 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
import os
from setuptools import setup, find_packages
#from django_token_auth import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
setup(
name = "Django token authorization",
version = ".".join(map(str, (0,0,2))),
description = "",
long_description = read('README.md'),
url = '',
license = 'MIT',
author = 'Maxim Leonovich',
author_email = 'maxim.leonovich@upsilonit.com',
packages = find_packages(exclude=['tests']),
include_package_data = True,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
#'Framework :: Django',
],
install_requires = ["Django>=1.6.1", "pytz", "M2Crypto==0.22.3"],
tests_require = [],
)