-
Notifications
You must be signed in to change notification settings - Fork 6
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 #73 from LIN810116/deployment
Deployment setup
- Loading branch information
Showing
3 changed files
with
26 additions
and
3 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 @@ | ||
graft sparc_me/resources |
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,22 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="sparc_me", | ||
version="1.0.11", | ||
description='A python tool to explore, enhance, and expand SPARC datasets and their descriptions in accordance with FAIR principles.', | ||
author="Thiranja Prasad Babarenda Gamage, Chinchien Lin, Savindi Wijenayaka, Michael Hoffman, Linkun Gao, Haribalan Kumar", | ||
email="[email protected], [email protected]", | ||
license="Apache-2.0", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
package_data={'': ['resources./*']}, | ||
install_requires=[ | ||
'pandas', | ||
'styleframe', | ||
'xlrd', | ||
'openpyxl', | ||
'jsonschema', | ||
'requests', | ||
'pybids' | ||
] | ||
) |
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 sparc_me.core.dataset import Dataset | ||
from sparc_me.core.api_tools import Dataset_Api | ||
from sparc_me.core.schema import Schema | ||
from .core.dataset import Dataset | ||
from .core.api_tools import Dataset_Api | ||
from .core.schema import Schema, Validator |