forked from ai4geology/GCN-Microbialite-Lithology
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 787 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 787 Bytes
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
from setuptools import setup, find_packages
setup(
name="gcn-lithology-identification",
version="1.0.0",
description="Spectral Graph Convolution Networks for Microbialite Lithology Identification",
author="Keran Li, Jinmin Song et al.",
author_email="keranli98@outlook.com",
packages=find_packages(),
install_requires=[
'torch>=1.11.0',
'numpy>=1.20.0',
'pandas>=1.3.0',
'scikit-learn>=0.24.0',
'imbalanced-learn>=0.8.0',
'scipy>=1.7.0',
],
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.8',
],
)