-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 676 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (20 loc) · 676 Bytes
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
# Run 'python -m build && 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='2.1.1',
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 Pulgarín',
url='https://github.com/jpulgarin/django-tokenapi',
packages=['tokenapi'],
install_requires=['Django>=2.0'],
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
],
)