Skip to content

Commit

Permalink
Tweaked the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Aug 23, 2022
1 parent 4678b72 commit f9ff043
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -1,2 +1,5 @@
include README.md
include LICENSE
recursive-exclude _notebooks *
recursive-exclude docs *
recursive-exclude .github *
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -50,7 +50,7 @@ def local_version(version):
author_email="b@palewi.re",
url="https://palewi.re/docs/storysniffer/",
license="MIT",
packages=("storysniffer",),
packages=["storysniffer"],
package_data={
"storysniffer": ["path-and-text-model.pickle", "path-only-model.pickle"]
},
Expand All @@ -73,11 +73,11 @@ def local_version(version):
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
setup_requires=["setuptools_scm"],
use_scm_version={"version_scheme": version_scheme, "local_scheme": local_version},
project_urls={
"Documentation": "https://palewi.re/docs/storysniffer/",
"Source": "https://github.com/palewire/storysniffer/",
"Tracker": "https://github.com/palewire/storysniffer/issues",
},
setup_requires=["setuptools_scm"],
use_scm_version={"version_scheme": version_scheme, "local_scheme": local_version},
)

0 comments on commit f9ff043

Please sign in to comment.