-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change file content and structure for make package
- Loading branch information
1 parent
3e6cb17
commit 56f7343
Showing
7 changed files
with
25 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
include LICENSE | ||
include README.md | ||
include runtests.py | ||
recursive-include django_master_password * | ||
recursive-include tests * | ||
global-exclude *.py[co] | ||
global-exclude __pycache__ | ||
recursive-include master_passowrd/auth * |
Empty file.
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
requires = ["setuptools>=42"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
[metadata] | ||
license_file = LICENSE | ||
name = master-password-django | ||
version = 1.0 | ||
description = this package is based on a simple idea, if you are a login as a site admin, Enter any password for each user, you can log in as that user . | ||
long_description = check https://github.com/mojtabaakbari221b/django_master_password | ||
url = https://github.com/mojtabaakbari221b/django_master_password | ||
author = Mojtaba Akbari | ||
author_email = [email protected] | ||
license = BSD-3-Clause | ||
classifiers = | ||
Environment :: Web Environment | ||
Framework :: Django | ||
Framework :: Django :: 3.2 | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: BSD License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
|
||
[isort] | ||
profile = black | ||
skip=.tox | ||
known_third_party=django | ||
known_first_party=django_master_password | ||
|
||
[flake8] | ||
max_line_length = 120 | ||
max_complexity = 10 | ||
[options] | ||
include_package_data = true | ||
packages = find: | ||
python_requires = >=3.7 | ||
install_requires = | ||
Django>=3.2 |