Skip to content

Commit

Permalink
0.1.3 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanasco committed Mar 26, 2021
1 parent a5b540b commit 4f726fc
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,6 @@
0.1.3
packaging fixes

0.1.2
* black
* upgraded black; 20.8b1
Expand Down
10 changes: 10 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,10 @@
graft src
graft tests

include setup.cfg pyproject.toml
include tox.ini
include CHANGES.txt
include LICENSE
include README.md

recursive-exclude * __pycache__ *.py[cod] .DS_Store
7 changes: 5 additions & 2 deletions setup.py
Expand Up @@ -12,7 +12,7 @@
long_description = fp.read()

# store version in the init.py
with open(os.path.join(HERE, "metadata_utils", "__init__.py")) as v_file:
with open(os.path.join(HERE, "src", "metadata_utils", "__init__.py")) as v_file:
VERSION = re.compile(r'.*__VERSION__ = "(.*?)"', re.S).match(v_file.read()).group(1)

requires = []
Expand All @@ -39,7 +39,10 @@
"testing": testing_extras,
},
test_suite="tests",
packages=find_packages(),
packages=find_packages(
where="src",
),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
Expand Down
Expand Up @@ -2,7 +2,7 @@

from xml.sax.saxutils import escape, unescape

__VERSION__ = "0.1.2"
__VERSION__ = "0.1.3"


# ==============================================================================
Expand Down
Empty file added tests/__init__.py
Empty file.

0 comments on commit 4f726fc

Please sign in to comment.