-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (38 loc) · 1.49 KB
/
setup.py
File metadata and controls
44 lines (38 loc) · 1.49 KB
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
36
37
38
39
40
41
42
43
44
import setuptools
setuptools.setup(
name="django-auth-wall",
version="0.3.0",
url="https://github.com/theskumar/django-auth-wall",
author="Saurabh Kumar",
author_email="[email protected]",
description="Puts your staging site behind a basic auth layer.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
py_modules=['django_auth_wall'],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
classifiers=[
'Environment :: Web Environment',
'Development Status :: 2 - Pre-Alpha',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: System Administrators',
],
keywords=(
'security', 'django', 'python', 'basic authentication'
),
)
# (*) Please direct queries to the discussion group, rather than to me directly
# Doing so helps ensure your question is helpful to other users.
# Queries directly to my email are likely to receive a canned response.
#
# Many thanks for your understanding.