Skip to content

Commit 24a683d

Browse files
committed
打包配置调整(dependencies列表注册纠正)
Signed-off-by: Sadam·Sadik <1903249375@qq.com>
1 parent dc1e8fa commit 24a683d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
[project]
22
name = "DjangoAsyncAdmin"
3-
version = "6.11.1"
3+
version = "6.11.2"
44
authors = [
55
{ name = "Sadam·Sadik", email = "1903249375@qq.com" },
66
]
77
description = "A second development project based on SimplePro for out of print version 6.5.2"
88
readme = "README.md"
99
requires-python = ">=3.6"
10+
dependencies = [
11+
'django>=2.1', 'django-simpleui>=2022.11.30', 'django-import-export', 'requests', 'rsa', 'psutil>=5.9.8'
12+
]
1013
classifiers = [
1114
"Programming Language :: Python :: 3",
1215
"License :: OSI Approved :: Apache Software License",

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@
88
======================================="""
99
from setuptools import setup, find_packages
1010

11-
requires = ['django>=2.1', 'django-simpleui>=2022.11.30', 'django-import-export', 'requests', 'rsa', 'psutil>=5.9.8']
12-
setup(packages=find_packages(exclude=[]), install_requires=requires)
11+
setup(packages=find_packages(exclude=[]))

0 commit comments

Comments
 (0)