Skip to content

Commit

Permalink
change file content and structure for make package
Browse files Browse the repository at this point in the history
  • Loading branch information
mojtabaakbari221b committed Jun 21, 2022
1 parent 3e6cb17 commit 56f7343
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENCE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) Alex Gaynor and individual contributors.
Copyright (c) Mojtaba Akbari.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 1 addition & 5 deletions MANIFEST.in
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 added master_password/__init__.py
Empty file.
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
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"
32 changes: 22 additions & 10 deletions setup.cfg
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

0 comments on commit 56f7343

Please sign in to comment.