Skip to content

Commit

Permalink
complete skeleton of setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mojtabaakbari221b committed Jun 20, 2022
1 parent dc276a1 commit 3e6cb17
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include LICENSE
include README.md
include runtests.py
recursive-include django_master_password *
recursive-include tests *
global-exclude *.py[co]
global-exclude __pycache__
12 changes: 12 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[metadata]
license_file = LICENSE

[isort]
profile = black
skip=.tox
known_third_party=django
known_first_party=django_master_password

[flake8]
max_line_length = 120
max_complexity = 10
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup

setup()

0 comments on commit 3e6cb17

Please sign in to comment.