setup.py 723 Bytes
Newer Older
1
from setuptools import setup, find_packages
Xiang Gao's avatar
Xiang Gao committed
2

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
setup_attrs = {
    'name': 'torchani',
    'version': '0.1',
    'description': 'PyTorch implementation of ANI',
    'url': 'https://github.com/zasdfgbnm/torchani',
    'author': 'Xiang Gao',
    'author_email': 'qasdfgtyuiop@ufl.edu',
    'license': 'MIT',
    'packages': find_packages(),
    'include_package_data': True,
    'install_requires': [
        'torch',
        'pytorch-ignite',
        'lark-parser',
        'h5py',
    ],
    'test_suite': 'nose.collector',
    'tests_require': ['nose'],
}

try:
    from sphinx.setup_command import BuildDoc
    setup_attrs['cmdclass'] = {'build_sphinx': BuildDoc}
except ModuleNotFoundError:
    pass

setup(**setup_attrs)