-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
32 lines (31 loc) · 1.17 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
from setuptools import find_packages, setup
setup(
name='drfapikey',
version=__import__('rest_framework_api_key').__version__,
author="Emmanouil Konstantinidis",
author_email="hello@manos.im",
packages=find_packages(),
include_package_data=True,
url="https://github.com/manosim/django-rest-framework-api-key",
license='BSD',
description="Authenticate Web APIs made with Django REST Framework",
long_description=open("README.md").read(),
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
],
)