-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (28 loc) · 927 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
28
29
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="django-urlauth-egguy",
version="0.2.2",
description="Django application for user authentication with key in hypertext link",
url="https://github.com/egguy/django-urlauth/",
author="Grigoriy Petukhov",
author_email="lorien@lorien.name",
packages=find_packages(exclude=["demo"]),
include_package_data=True,
zip_safe=False,
license="BSD",
keywords="django application authentication authorization",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
install_requires=[
"django>=1.11",
],
)