-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from maykinmedia/fix/tests-in-package
Excluded tests from package, bumped version
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
include License | ||
include README.rst | ||
recursive-include mail_editor/templates * | ||
recursive-include mail_editor *.html | ||
recursive-include mail_editor *.txt | ||
recursive-include mail_editor *.po | ||
recursive-include bin * | ||
recursive-include testapp * | ||
global-exclude __pycache__ | ||
global-exclude *.py[co] |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "mail_editor" | ||
version = "0.3.6" | ||
version = "0.3.7" | ||
description = "A Django package for email template editing" | ||
authors = [ | ||
{name = "Maykin Media", email = "[email protected]"} | ||
|
@@ -68,6 +68,7 @@ release = [ | |
|
||
[tool.setuptools.packages.find] | ||
include = ["mail_editor*"] | ||
exclude = ["tests", "testapp"] | ||
namespaces = false | ||
|
||
[tool.isort] | ||
|
@@ -82,7 +83,7 @@ testpaths = ["tests"] | |
DJANGO_SETTINGS_MODULE = "testapp.settings" | ||
|
||
[tool.bumpversion] | ||
current_version = "0.3.6" | ||
current_version = "0.3.7" | ||
files = [ | ||
{filename = "pyproject.toml"}, | ||
{filename = "README.rst"}, | ||
|