17 lines
444 B
Python
17 lines
444 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="netrans",
|
|
version="0.1.0",
|
|
author="nudt_dsp",
|
|
url="https://gitlink.org.cn/gwg_xujiao/netrans",
|
|
packages=find_packages(include=["netrans_py"]),
|
|
package_dir={"": "."}, # 指定根目录映射关系[8](@ref)
|
|
install_requires=[
|
|
"ruamel.yaml==0.18.6"
|
|
]
|
|
)
|