setup.py 832 Bytes
Newer Older
Jinjing Zhou's avatar
Jinjing Zhou committed
1
2
3
4
5
#!/usr/bin/env python

from setuptools import find_packages
from distutils.core import setup

6
setup(name='dglgo',
Jinjing Zhou's avatar
Jinjing Zhou committed
7
8
9
10
11
12
13
14
15
16
17
      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",
18
          "ruamel.yaml>=0.17.20",
19
20
21
22
          "PyYAML>=5.1",
          "ogb>=1.3.3",
          "rdkit-pypi",
          "scikit-learn>=0.20.0"
Jinjing Zhou's avatar
Jinjing Zhou committed
23
      ],
24
25
26
      package_data={"": ["./*"]},
      include_package_data=True,
      license='APACHE',
Jinjing Zhou's avatar
Jinjing Zhou committed
27
28
      entry_points={
          'console_scripts': [
29
              "dgl = dglgo.cli.cli:main"
Jinjing Zhou's avatar
Jinjing Zhou committed
30
31
32
33
          ]
      },
      url='https://github.com/dmlc/dgl',
      )