File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- __version__ = '1.0.6b0.dev0 '
1+ __version__ = '1.0.7b0 '
Original file line number Diff line number Diff line change 1- import os
2-
31import setuptools
2+ import os
43
5- from PyBugReporter ._version import __version__ as version
4+ from PyBugReporter ._version import __version__
65
76with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
87 longDescription = fh .read ()
@@ -39,7 +38,7 @@ def listFolders(directory: str) -> list[str]:
3938
4039setuptools .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)
You can’t perform that action at this time.
0 commit comments