setup.py 577 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
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'],
}

setup(**setup_attrs)