".github/vscode:/vscode.git/clone" did not exist on "a8a42651fd266719d2e0bd1410ddead66749aedc"
Unverified Commit 61637872 authored by Gao, Xiang's avatar Gao, Xiang Committed by GitHub
Browse files

remove dependency on sphinx on setup.py (#69)

parent f4c703bb
from setuptools import setup, find_packages
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
setup(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'],
cmdclass=cmdclass,
)
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)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment