mirror of
https://github.com/dmlc/dgl.git
synced 2026-06-04 19:44:23 +08:00
* add * remove * fix * rework the readme and some changes * add png * update png * add recipe get Co-authored-by: Minjie Wang <wmjlyjemaine@gmail.com> Co-authored-by: Quan (Andy) Gan <coin2028@hotmail.com>
31 lines
750 B
Python
31 lines
750 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import find_packages
|
|
from distutils.core import setup
|
|
|
|
setup(name='dglgo',
|
|
version='0.0.1',
|
|
description='DGL',
|
|
author='DGL Team',
|
|
author_email='wmjlyjemaine@gmail.com',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'typer>=0.4.0',
|
|
'isort>=5.10.1',
|
|
'autopep8>=1.6.0',
|
|
'numpydoc>=1.1.0',
|
|
"pydantic>=1.9.0",
|
|
"ruamel.yaml>=0.17.20",
|
|
"PyYAML>=5.1"
|
|
],
|
|
package_data={"": ["./*"]},
|
|
include_package_data=True,
|
|
license='APACHE',
|
|
entry_points={
|
|
'console_scripts': [
|
|
"dgl = dglgo.cli.cli:main"
|
|
]
|
|
},
|
|
url='https://github.com/dmlc/dgl',
|
|
)
|