fix the issue of static files not being included in the package
This commit is contained in:
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@@ -0,0 +1,2 @@
|
||||
include jesse/static/*
|
||||
include jesse/static/**/*
|
||||
@@ -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'
|
||||
)
|
||||
)
|
||||
|
||||
4
setup.py
4
setup.py
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user