This repository was archived by the owner on Oct 15, 2024. It is now read-only.
forked from IceLab-X/FidelityFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (45 loc) · 1.39 KB
/
setup.py
File metadata and controls
54 lines (45 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding:utf-8
# This file is part of MF_Fusion.
__author__ = 'Guanjie Wang'
__email__ = "gjwang.buaa@gmail.edu.cn"
__version__ = 1.0
__init_date__ = '2023/06/15 10:16:04'
__maintainer__ = 'Guanjie Wang'
__update_date__ = '2023/06/15 10:16:04'
import os
from setuptools import find_packages, setup
NAME = 'mffusion'
VERSION = '0.1.0-beta1'
DESCRIPTION = 'Multi-fidelity fusion toolbox of most GP-based mtehod'
README_FILE = os.path.join(os.path.dirname(__file__), 'README.md')
LONG_DESCRIPTION = open(README_FILE, encoding='UTF8').read()
REQUIREMENTS = ['numpy', 'torch', 'scikit-learn', 'matplotlib',
'scipy', 'tensorly', 'PyYAML', 'h5py']
URL = "https://github.com/IceLab-X/MF-Fusion"
AUTHOR = 'Wei Xing, Zen Xingle'
AUTHOR_EMAIL = ''
LICENSE = 'MIT'
PACKAGES = find_packages()
PACKAGE_DATA = {}
ENTRY_POINTS = {}
def setup_package():
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
packages=find_packages(),
package_data=PACKAGE_DATA,
include_package_data=True,
entry_points=ENTRY_POINTS,
install_requires=REQUIREMENTS,
cmdclass={},
zip_safe=False,
url=URL
)
if __name__ == '__main__':
setup_package()