setup.py 675 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
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': [
Gao, Xiang's avatar
Gao, Xiang committed
14
        'torch_nightly',
15
16
17
18
19
        'pytorch-ignite',
        'lark-parser',
        'h5py',
    ],
    'test_suite': 'nose.collector',
20
21
22
23
    'tests_require': [
        'nose',
        'tensorboardX',
        'tqdm',
Gao, Xiang's avatar
Gao, Xiang committed
24
        'ase',
Gao, Xiang's avatar
Gao, Xiang committed
25
        'coverage',
26
    ],
27
28
29
}

setup(**setup_attrs)