Skip to content

Commit

Permalink
📦 Package info
Browse files Browse the repository at this point in the history
  • Loading branch information
danyi1212 committed Dec 17, 2020
1 parent c2672c6 commit 8ed0795
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
##### Easy integration and deployment of Django projects into Windows Environments.
Documentation is available at [https://django-windowsauth.readthedocs.io/en/latest/](https://django-windowsauth.readthedocs.io/en/latest/)

Requirements:
* Python (3.6, 3.7, 3.8, 3.9)
* Django (2.2, 3.0, 3.1)

#### Features
- Deploy to **Microsoft IIS** quickly using [wfastcgi](https://pypi.org/project/wfastcgi/)
- Authenticate via [IIS's Windows Authentication](https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/authentication/windowsauthentication/#:~:text=You%20can%20use%20Windows%20authentication,Windows%20accounts%20to%20identify%20users.&text=When%20you%20install%20and%20enable,the%20default%20protocol%20is%20Kerberos.)
Expand Down
17 changes: 17 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,39 @@ author = Dan Yishai
author_email = danyi1212@gmail.com
license = BSD-3-Clause
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Environment :: Win32 (MS Windows)
Natural Language :: English
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Operating System :: Microsoft
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Systems Administration :: Authentication/Directory
Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
Topic :: Documentation
Topic :: Documentation :: Sphinx

[options]
include_package_data = true
Expand Down
2 changes: 1 addition & 1 deletion testproj/testproj/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'NAME': str(os.path.join(BASE_DIR, "db.sqlite3")),
}
}

Expand Down

0 comments on commit 8ed0795

Please sign in to comment.