-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9138cbd
commit 9a6c8ea
Showing
20 changed files
with
8,574 additions
and
7 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
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,48 @@ | ||
# -*- coding: utf-8 -*- | ||
# Created by Felipe Lopes de Oliveira | ||
# Distributed under the terms of the MIT License. | ||
|
||
import os | ||
import sys | ||
|
||
# This code is written for Python 3 | ||
if sys.version_info[0] != 3: | ||
raise Exception("Sorry but pyCOFBuilder requires Python 3.") | ||
sys.exit(1) | ||
|
||
# Import BuildingBlocks class | ||
from pycofbuilder.building_block import BuildingBlock | ||
|
||
# Import Framework class | ||
from pycofbuilder.framework import Framework | ||
|
||
# Import Tools | ||
import pycofbuilder.tools as Tools | ||
import pycofbuilder.io_tools as IO_Tools | ||
|
||
# Import ChemJSON | ||
import pycofbuilder.chemjson as ChemJSON | ||
|
||
# Import Exceptions | ||
import pycofbuilder.exceptions as Exceptions | ||
|
||
# Import Logger | ||
import pycofbuilder.logger as Logger | ||
|
||
__all__ = [ | ||
'BuildingBlock', | ||
'Framework', | ||
'Tools', | ||
'IO_Tools', | ||
'ChemJSON', | ||
'Exceptions', | ||
'Logger' | ||
] | ||
|
||
_ROOT = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
__author__ = "Felipe Lopes de Oliveira" | ||
__license__ = "MIT" | ||
__version__ = '0.0.6' | ||
__email__ = "[email protected]" | ||
__status__ = "Development" |
Oops, something went wrong.