Skip to content

Commit d6fb26c

Browse files
committed
More cleanup
1 parent 44deba9 commit d6fb26c

File tree

6 files changed

+7
-80
lines changed

6 files changed

+7
-80
lines changed

.editorconfig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@ end_of_line = crlf
1616

1717
[LICENSE]
1818
insert_final_newline = false
19-
20-
[Makefile]
21-
indent_style = tab

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ include LICENSE
33
include README.md
44

55
recursive-include tests *
6+
recursive-include netbox_script_manager/templates *
67
recursive-exclude * __pycache__
78
recursive-exclude * *.py[co]
89

9-
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
10+
recursive-include docs *.jpg *.png *.gif

Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

mkdocs.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
site_name: NetBox Script Manager Plugin
1+
site_name: NetBox Script Manager
22
site_url: https://kkthxbye-code.github.io/netbox_script_manager
33
repo_url: https://github.com/kkthxbye-code/netbox_script_manager
44
repo_name: kkthxbye-code/netbox_script_manager
55
#strict: true
66
nav:
77
- Home: index.md
8-
- Contributing: contributing.md
9-
- Changelog: changelog.md
108
theme:
119
name: material
1210
language: en
@@ -49,24 +47,3 @@ plugins:
4947
- mkdocstrings:
5048
watch:
5149
- netbox_script_manager
52-
extra:
53-
social:
54-
- icon: fontawesome/brands/twitter
55-
# replace with your own tweet link below
56-
link: https://github.com/netbox-community/cookiecutter-netbox-plugin
57-
name: Tweet
58-
- icon: fontawesome/brands/facebook
59-
# replace with your own facebook link below
60-
link: https://github.com/netbox-community/cookiecutter-netbox-plugin
61-
name: Facebook
62-
- icon: fontawesome/brands/github
63-
link: https://github.com/kkthxbye-code/netbox_script_manager
64-
name: Github
65-
- icon: material/email
66-
link: "mailto:[email protected]"
67-
# to enable disqus, uncomment the following and put your disqus id below
68-
# disqus: disqus_id
69-
# uncomment the following and put your google tracking id below to enable GA
70-
#google_analytics:
71-
#- UA-xxx
72-
#- auto

requirements_dev.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
pip==22.3.1
2-
wheel==0.33.6
1+
pip==23.2.1
2+
wheel==0.41.2
33
twine==4.0.2
4-
black==22.12.0
4+
black==23.9.1
5+
bump2version==1.0.1

setup.cfg

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,3 @@
1-
[flake8]
2-
max-line-length = 120
3-
max-complexity = 18
4-
ignore = E203, E266, W503
5-
per-file-ignores = __init__.py:F401
6-
exclude = .git,
7-
__pycache__,
8-
setup.py,
9-
build,
10-
dist,
11-
docs,
12-
releases,
13-
.venv,
14-
.tox,
15-
.mypy_cache,
16-
.pytest_cache,
17-
.vscode,
18-
.github,
19-
# By default test codes will be linted.
20-
# tests
21-
22-
[tox:tox]
23-
isolated_build = true
24-
envlist = py38, py39, py310, format, lint, build
25-
26-
[gh-actions]
27-
python =
28-
3.10: py310
29-
3.9: py39
30-
3.8: py38, format, lint, build
31-
321
[bumpversion]
332
current_version = 0.1.0
343
commit = True

0 commit comments

Comments
 (0)