重构项目

This commit is contained in:
2026-02-28 12:07:17 +08:00
parent f3c1fc98f7
commit c5a2ac3e24
7 changed files with 40 additions and 21 deletions

View File

@@ -2,18 +2,18 @@ from setuptools import setup, find_packages
setup(
name="py-enjoy",
version="0.1.0",
version="0.1.2",
packages=find_packages(),
include_package_data=True,
package_data={
"": ["*.jar", "templates/*"]
"enjoy": ["*.jar", "templates/*"]
},
install_requires=[
"jpype1>=1.4.0"
],
author="mrzhou",
author_email="mrzhou@miw.cn",
description="jfinal-enjoy 5.2.2 的python 3.9.0 实现基于jpype1实现",
description="jfinal-enjoy 5.2.2 的python 3.9.0 实现基于jpype1实现。 mrzhou@miw.cn",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.9",