完善使用样例
This commit is contained in:
26
setup.py
Normal file
26
setup.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="py-enjoy",
|
||||
version="0.1.0",
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
"": ["*.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实现",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
python_requires=">=3.9",
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
url="https://git.miw.cn/mrzhou/py-enjoy"
|
||||
)
|
||||
Reference in New Issue
Block a user