Skip to content

Commit

Permalink
meta: version 0.1.0 package
Browse files Browse the repository at this point in the history
  • Loading branch information
Exirel committed Apr 12, 2020
1 parent 9d9ee09 commit 796f36b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
File renamed without changes.
9 changes: 9 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
global-exclude *.py[cod]
recursive-exclude sopel/ *
recursive-exclude .git/ *
recursive-exclude .vscode/ *
recursive-exclude .pytest_cache/ *
exclude .gitignore
exclude .pylintrc
exclude .coverage
exclude requirements.txt
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ pylint:

qa: quality test coverages pylint

.PHONY: develop
.PHONY: develop build

develop:
pip install -r requirements.txt
python setup.py develop


build:
rm -rf build/ dist/
python setup.py sdist bdist_wheel
6 changes: 6 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ author = Florian Strzelecki
author_email = [email protected]
url = https://github.com/sopel-irc/sopel-help
license = Eiffel Forum License, version 2
license_file = LICENSE.txt
platforms = Linux x86, x86-64
classifiers =
Development Status :: 1 - Planning
Expand All @@ -30,6 +31,11 @@ install_requires =
sopel>=7
requests

[options.packages.find]
exclude =
sopel
sopel.*

[options.entry_points]
sopel.plugins =
help = sopel_help.plugin
Expand Down

1 comment on commit 796f36b

@dgw
Copy link
Member

@dgw dgw commented on 796f36b Apr 12, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉🥇

Please sign in to comment.