Skip to content

Commit

Permalink
Add MANIFEST.in file to include distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jun 15, 2020
1 parent 99eb00d commit 12ca079
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ __pycache__/
*.so

# Distribution / packaging
pyproject.toml
.Python
build/
develop-eggs/
Expand Down
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include orthoani/py.typed
include orthoani/_version.txt
include CHANGELOG.md
include README.md
include pyproject.toml
include MANIFEST.in
18 changes: 2 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version = file: orthoani/_version.txt
author = Martin Larralde
author-email = martin.larralde@embl.de
home-page = https://github.com/althonos/orthoani
description = {description}
description = An implementation of the OrthoANI algorithm for nucleotide identity measurement.
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
Expand Down Expand Up @@ -52,27 +52,14 @@ orthoani = py.typed, _version.txt, *.pyi
[bdist_wheel]
universal = true

[check]
metadata = true
restructuredtext = true
strict = true

[sdist]
formats = zip, gztar
formats = gztar

[coverage:report]
show_missing = true
exclude_lines =
pragma: no cover
if False
# @abc.abstractmethod
# @abc.abstractproperty
# raise NotImplementedError
# return NotImplemented
# except ImportError
# raise MemoryError
# if __name__ == .__main__.:
# if typing.TYPE_CHECKING:

[green]
file-pattern = test_*.py
Expand All @@ -82,7 +69,6 @@ quiet-stdout = true
run-coverage = true

[pydocstyle]
# match-dir = (?!tests)(?!resources)(?!docs)[^\.].*
match = (?!test)(?!setup).*\.py
inherit = false
ignore = D200, D203, D213, D406, D407 # Google conventions
Expand Down

0 comments on commit 12ca079

Please sign in to comment.