setup.py 949 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import dgllife
import sys

from setuptools import find_packages

if '--inplace' in sys.argv:
    from distutils.core import setup
else:
    from setuptools import setup

setup(
    name='dgllife',
    version=dgllife.__version__,
Mufei Li's avatar
Mufei Li committed
16
    description='DGL-based package for Life Science',
17
18
19
20
    keywords=[
        'pytorch',
        'dgl',
        'graph-neural-networks',
Mufei Li's avatar
Mufei Li committed
21
        'life-science',
22
23
24
25
26
27
28
29
        'drug-discovery'
    ],
    zip_safe=False,
    maintainer='DGL Team',
    packages=[package for package in find_packages()
              if package.startswith('dgllife')],
    install_requires=[
        'torch>=1'
Mufei Li's avatar
Mufei Li committed
30
        'scikit-learn>=0.22.2',
31
        'pandas>=0.25.1',
32
33
        'requests>=2.22.0',
        'tqdm'
34
    ],
Mufei Li's avatar
Mufei Li committed
35
    url='https://github.com/dmlc/dgl/tree/master/apps/life_sci',
36
    classifiers=[
37
        'Development Status :: 3 - Alpha',
38
        'Programming Language :: Python :: 3',
39
    ],
40
)