-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.32 KB
/
setup.py
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
from setuptools import find_packages, setup
if __name__ == "__main__":
setup(
name="mlrap",
version="1.0",
description="Machine Learning Regression Analyse Packages",
url="https://github.com/NianSan-H/mlrap",
author="Gang Tang, Tao Hu, Chunbao Feng",
include_package_data=True,
packages=find_packages(),
package_data={
"mlrap": [
"config\run-CONFIG.yaml",
"config\optim-CONFIG.yaml",
"config\current.mplstyle",
"config\shap.mplstyle",
"example\dielectric_constant.json.gz",
"example\elastic_tensor_2015.json.gz"
]
},
install_requires=[
"click",
"scikit-learn",
"xgboost",
"pymatgen",
"seaborn",
"bayesian-optimization",
"matminer",
"shap",
"CBFV",
"xenonpy",
"rdkit",
"mlxtend",
],
entry_points={
"console_scripts": [
"mlrap = mlrap.command.cli:cli",
]
},
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
)