7 Star 26 Fork 7

carson_git/pybi-next

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
CrystalWindSnake 提交于 2023-11-09 12:08 . Merge branch 'feat-quasar'
#!/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",
author_email="[email protected]",
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,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/carson_add/pybi-next.git
[email protected]:carson_add/pybi-next.git
carson_add
pybi-next
pybi-next
master

搜索帮助