Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torchani
Commits
61637872
".github/vscode:/vscode.git/clone" did not exist on "a8a42651fd266719d2e0bd1410ddead66749aedc"
Unverified
Commit
61637872
authored
Aug 21, 2018
by
Gao, Xiang
Committed by
GitHub
Aug 21, 2018
Browse files
remove dependency on sphinx on setup.py (#69)
parent
f4c703bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
21 deletions
+27
-21
setup.py
setup.py
+27
-21
No files found.
setup.py
View file @
61637872
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
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment