代码拉取完成,页面将自动刷新
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
import pybi as pbi
from pathlib import Path
def all_static_files():
files = [str(p) for p in Path("pybi/static").glob("*.*")]
return files
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
requirements = ["pandas", "simplejson", "jinja2", "typing_extensions"]
test_requirements = ["pytest>=3", "playwright", "pyecharts"]
setup(
author="carson_jia",
python_requires=">=3.7",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="...",
entry_points={
# 'console_scripts': [
# 'test_prj=test_prj.cli:main',
# ],
},
install_requires=requirements,
license="MIT license",
# long_description=readme,
include_package_data=True,
keywords=["pybi", "vision", "BI", "report"],
name="pybi-next",
packages=find_packages(include=["pybi", "pybi.*"]),
data_files=[
(
"template",
[
"pybi/template/index.html",
],
),
(
"static",
all_static_files(),
),
],
test_suite="__tests",
tests_require=test_requirements,
url="",
version=pbi.__version__,
zip_safe=False,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。