1 Star 0 Fork 0

闫广庆/DIG

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
Meng Liu 提交于 2021-06-21 14:06 . Install rdkit from pip
import setuptools
from dig.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov', 'mock']
setuptools.setup(
name="dive_into_graphs",
version=__version__,
author="DIVE Lab@TAMU",
author_email="sji@tamu.edu",
# entry_points={
# 'console_scripts': [
# 'dig=dig.xxx.xxx'
# ]
# },
maintainer="DIVE Lab@TAMU",
# maintainer_email="xxx",
license="GPLv3",
# keywords="xxx",
description="DIG: Dive into Graphs is a turnkey library for graph deep learning research.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/divelab/DIG",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=['scipy',
'cilog',
'typed-argument-parser==1.5.4',
'captum==0.2.0',
'shap',
'IPython',
'tqdm',
'rdkit-pypi',
'pandas'],
python_requires='>=3.6',
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
include_package_data=True
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/swner_admin/DIG.git
git@gitee.com:swner_admin/DIG.git
swner_admin
DIG
DIG
dig

搜索帮助