Skip to content

Commit 573985a

Browse files
committed
Merge remote-tracking branch 'origin/stg' into dev
2 parents d5103df + 78fffb3 commit 573985a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

PyBugReporter/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.6b0.dev0'
1+
__version__ = '1.0.7b0'

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
import os
2-
31
import setuptools
2+
import os
43

5-
from PyBugReporter._version import __version__ as version
4+
from PyBugReporter._version import __version__
65

76
with open("README.md", "r", encoding="utf-8") as fh:
87
longDescription = fh.read()
@@ -39,7 +38,7 @@ def listFolders(directory: str) -> list[str]:
3938

4039
setuptools.setup(
4140
name='PyBugReporter',
42-
version=version,
41+
version=__version__,
4342
author='Record Linking Lab',
4443
author_email='recordlinkinglab@gmail.com',
4544
description='A python library for catching thrown exceptions and automatically creating issues on a GitHub repo.',
@@ -51,4 +50,5 @@ def listFolders(directory: str) -> list[str]:
5150
},
5251
packages=folders,
5352
install_requires=requirements,
53+
package_data={"": ["*.json", "*.txt"]},
5454
)

0 commit comments

Comments
 (0)