Skip to content

Commit

Permalink
Merge pull request #73 from LIN810116/deployment
Browse files Browse the repository at this point in the history
Deployment setup
  • Loading branch information
PrasadBabarendaGamage authored Aug 9, 2022
2 parents 061a10b + 8a309c4 commit 7009603
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
graft sparc_me/resources
22 changes: 22 additions & 0 deletions setup.py
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'
]
)
6 changes: 3 additions & 3 deletions sparc_me/__init__.py
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

0 comments on commit 7009603

Please sign in to comment.