-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
13c3ad3
commit 59a51ca
Showing
4 changed files
with
47 additions
and
50 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
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,72 +1,69 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import os | ||
|
||
from setuptools import setup, find_packages | ||
from shutil import copy2 | ||
|
||
from setuptools import find_packages, setup | ||
|
||
# load README.md/README.rst file | ||
try: | ||
if os.path.exists('README.md'): | ||
with open('README.md', 'r') as fp: | ||
if os.path.exists("README.md"): | ||
with open("README.md", "r") as fp: | ||
readme = fp.read() | ||
readme_type = 'text/markdown; charset=UTF-8' | ||
elif os.path.exists('README.rst'): | ||
with open('README.rst', 'r') as fp: | ||
readme_type = "text/markdown; charset=UTF-8" | ||
elif os.path.exists("README.rst"): | ||
with open("README.rst", "r") as fp: | ||
readme = fp.read() | ||
readme_type = 'text/x-rst; charset=UTF-8' | ||
readme_type = "text/x-rst; charset=UTF-8" | ||
else: | ||
readme = "" | ||
except Exception: | ||
readme = "" | ||
|
||
setup_args = { | ||
'name': 'ndx-microscopy', | ||
'version': '0.1.0', | ||
'description': 'An example extension to demonstrate the TAB proposal for enhancements to optical physiology neurodata types.', | ||
'long_description': readme, | ||
'long_description_content_type': readme_type, | ||
'author': 'Cody Baker and Alessandra Trapani', | ||
'author_email': 'cody.baker@catalystneuro.com', | ||
'url': '', | ||
'license': 'MIT', | ||
'install_requires': [ | ||
'pynwb>=1.5.0,<3', | ||
'hdmf>=2.5.6,<4', | ||
"name": "ndx-microscopy", | ||
"version": "0.1.0", | ||
"description": "An example extension to demonstrate the TAB proposal for enhancements to optical physiology neurodata types.", | ||
"long_description": readme, | ||
"long_description_content_type": readme_type, | ||
"author": "Cody Baker and Alessandra Trapani", | ||
"author_email": "cody.baker@catalystneuro.com", | ||
"url": "", | ||
"license": "MIT", | ||
"install_requires": [ | ||
"pynwb>=1.5.0,<3", | ||
"hdmf>=2.5.6,<4", | ||
], | ||
'packages': find_packages('src/pynwb', exclude=["tests", "tests.*"]), | ||
'package_dir': {'': 'src/pynwb'}, | ||
'package_data': {'ndx_microscopy': [ | ||
'spec/ndx-microscopy.namespace.yaml', | ||
'spec/ndx-microscopy.extensions.yaml', | ||
]}, | ||
'classifiers': [ | ||
"packages": find_packages("src/pynwb", exclude=["tests", "tests.*"]), | ||
"package_dir": {"": "src/pynwb"}, | ||
"package_data": { | ||
"ndx_microscopy": [ | ||
"spec/ndx-microscopy.namespace.yaml", | ||
"spec/ndx-microscopy.extensions.yaml", | ||
] | ||
}, | ||
"classifiers": [ | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License" | ||
], | ||
'keywords': [ | ||
'NeurodataWithoutBorders', | ||
'NWB', | ||
'nwb-extension', | ||
'ndx-extension' | ||
"License :: OSI Approved :: MIT License", | ||
], | ||
'zip_safe': False | ||
"keywords": ["NeurodataWithoutBorders", "NWB", "nwb-extension", "ndx-extension"], | ||
"zip_safe": False, | ||
} | ||
|
||
|
||
def _copy_spec_files(project_dir): | ||
ns_path = os.path.join(project_dir, 'spec', 'ndx-microscopy.namespace.yaml') | ||
ext_path = os.path.join(project_dir, 'spec', 'ndx-microscopy.extensions.yaml') | ||
ns_path = os.path.join(project_dir, "spec", "ndx-microscopy.namespace.yaml") | ||
ext_path = os.path.join(project_dir, "spec", "ndx-microscopy.extensions.yaml") | ||
|
||
dst_dir = os.path.join(project_dir, 'src', 'pynwb', 'ndx_microscopy', 'spec') | ||
dst_dir = os.path.join(project_dir, "src", "pynwb", "ndx_microscopy", "spec") | ||
if not os.path.exists(dst_dir): | ||
os.mkdir(dst_dir) | ||
|
||
copy2(ns_path, dst_dir) | ||
copy2(ext_path, dst_dir) | ||
|
||
|
||
if __name__ == '__main__': | ||
if __name__ == "__main__": | ||
_copy_spec_files(os.path.dirname(__file__)) | ||
setup(**setup_args) |
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ namespaces: | |
schema: | ||
- namespace: core | ||
- source: ndx-microscopy.extensions.yaml | ||
version: 0.1.0 | ||
version: 0.1.0 |