Skip to content

Commit

Permalink
fix missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
saleh-mir committed Oct 26, 2024
1 parent 29e6c1f commit e116d8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jesse/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.6'
__version__ = '1.3.7'
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

# also change in version.py
VERSION = '1.3.6'
VERSION = '1.3.7'
DESCRIPTION = "A trading framework for cryptocurrencies"
with open("requirements.txt", "r", encoding="utf-8") as f:
REQUIRED_PACKAGES = f.read().splitlines()
Expand Down Expand Up @@ -37,4 +37,7 @@
],
python_requires='>=3.8',
include_package_data=True,
package_data={
'': ['*.dll', '*.dylib', '*.so', '*.json'],
},
)

0 comments on commit e116d8b

Please sign in to comment.