setup.py 593 Bytes
Newer Older
Xiang Gao's avatar
Xiang Gao committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}

setup(name='torchani',
      version='0.1',
      description='ANI based on pytorch',
      url='https://github.com/zasdfgbnm/torchani',
      author='Xiang Gao',
      author_email='qasdfgtyuiop@ufl.edu',
      license='MIT',
      packages=['torchani'],
      include_package_data=True,
      install_requires=[
          'torch',
          'lark-parser',
          'h5py',
      ],
      test_suite='nose.collector',
20
      tests_require=['nose'],
Xiang Gao's avatar
Xiang Gao committed
21
22
      cmdclass=cmdclass,
      )