Project

General

Profile

Files » setup_bacup.py

UserName LastName, 07/14/2024 03:30 PM

 
"""
__author__ = 'jaxon'
__time__ = '2023/3/2 14:04'
__desc__ = ''
"""
import os

from setuptools import setup, find_packages

__here__ = os.path.abspath(os.path.dirname(__file__))

exec(open(os.path.join(__here__, '_version.py')).read())

setup(
name="csr_training_platform",
version=__version__,
description="实训平台",

# 你要安装的包,通过 setuptools.find_packages 找到当前目录下有哪些包
packages=find_packages(include=['csr_training_platform.*']),
package_data={
'csr_training_platform': ['conf/*.yaml', 'conf/**/*.yaml'],
},
python_requires='>=3.10',
install_requires=open('requirements-main.txt').readlines(),
entry_points={
'console_scripts': [
'csr_agent=csr_testing_agent.main:main',
]
}
)
(936-936/982)