-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from fwmeng88/master
Version 0.1.11 Add support of SDF file
- Loading branch information
Showing
9 changed files
with
313 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled dynamic libraries | ||
*.so | ||
*.so.[0-9]* | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
.installed.cfg | ||
MANIFEST | ||
*.egg-info/ | ||
*.egg | ||
*.manifest | ||
*.spec | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
.pytest_cache/ | ||
|
||
# Documentation | ||
doc/html/ | ||
doc/latex/ | ||
doc/man/ | ||
doc/xml/ | ||
doc/_build/ | ||
doc/source | ||
doc/modules | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
|
||
# Editor junk | ||
tags | ||
[._]*.s[a-v][a-z] | ||
[._]*.sw[a-p] | ||
[._]s[a-v][a-z] | ||
[._]sw[a-p] | ||
*~ | ||
\#*\# | ||
.\#* | ||
.ropeproject | ||
.idea/ | ||
.spyderproject | ||
.spyproject | ||
.vscode/ | ||
# Mac .DS_Store | ||
.DS_Store | ||
|
||
# jupyter notebook checkpoints | ||
.ipynb_checkpoints | ||
|
||
# version file generated by rob | ||
padelpy/_version.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from padelpy.wrapper import padeldescriptor | ||
from padelpy.functions import from_mdl, from_smiles | ||
from .wrapper import padeldescriptor | ||
from .functions import from_mdl, from_smiles, from_sdf | ||
__version__ = '0.1.10' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
VERSION = (0, 1, 11, "") | ||
|
||
__version__ = ".".join(map(str, VERSION[:-1])) | ||
__release__ = ".".join(map(str, VERSION)) |
Oops, something went wrong.