1 Star 0 Fork 0

xjy198903/django-bootstrap5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
Dylan Verheul 提交于 2021-12-27 10:20 . Release 21.3
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="django-bootstrap5",
zip_safe=False,
version="21.3",
description="Bootstrap 5 for Django",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/zostera/django-bootstrap5",
author="Dylan Verheul",
author_email="[email protected]",
license="BSD-3-Clause",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires=">=3.7",
install_requires=[
"Django>=2.2",
"beautifulsoup4>=4.8.0",
'importlib-metadata<3; python_version<"3.8"',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xjy198903/django-bootstrap5.git
[email protected]:xjy198903/django-bootstrap5.git
xjy198903
django-bootstrap5
django-bootstrap5
dependabot/pip/pillow-9.0.0

搜索帮助