fix the issue of static files not being included in the package

This commit is contained in:
Saleh Mir
2021-12-20 09:47:38 +01:00
parent add50137e4
commit cfee29d71b
3 changed files with 5 additions and 3 deletions

2
MANIFEST.in Normal file
View File

@@ -0,0 +1,2 @@
include jesse/static/*
include jesse/static/**/*

View File

@@ -38,7 +38,7 @@ def validate_cwd() -> None:
if not jh.is_jesse_project():
print(
jh.color(
'Current directory is not a Jesse project. You must run commands from the root of a Jesse project.',
'Current directory is not a Jesse project. You must run commands from the root of a Jesse project. Read this page for more info: https://docs.jesse.trade/docs/getting-started/#create-a-new-jesse-project',
'red'
)
)

View File

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
# also change in version.py
VERSION = '0.30.1'
VERSION = '0.30.5'
DESCRIPTION = "A trading framework for cryptocurrencies"
REQUIRED_PACKAGES = [
@@ -66,6 +66,6 @@ setup(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
python_requires='>=3.8',
include_package_data=True,
)