-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
27 lines (22 loc) · 795 Bytes
/
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
# Run 'python setup.py sdist bdist_wheel && twine upload dist/*' to upload new version
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-tokenapi',
version='1.3',
description='Add an API to your Django app using token-based authentication.',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Julian Pulgarin',
author_email='[email protected]',
url='https://github.com/jpulgarin/django-tokenapi',
packages=['tokenapi'],
install_requires=['six'],
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)