-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
70 lines (60 loc) · 2.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from shutil import copy2
# load README.md/README.rst file
try:
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 = fp.read()
readme_type = "text/x-rst; charset=UTF-8"
else:
readme = ""
except Exception:
readme = ""
setup_args = {
"name": "ndx-nirs",
"version": "0.3.0",
"description": "An NWB extension for storing Near-Infrared Spectroscopy (NIRS) data",
"long_description": readme,
"long_description_content_type": readme_type,
"author": "Sumner L Norman,Darin Erat Sleiter,José Ribeiro",
"url": "https://github.com/agencyenterprise/ndx-nirs",
"license": "BSD 3-Clause",
"python_requires": ">=3.7,<3.11",
"install_requires": ["hdmf>=3.3.2,<4", "pynwb>=2.1.0,<3"],
"packages": find_packages("src/pynwb"),
"package_dir": {"": "src/pynwb"},
"package_data": {
"ndx_nirs": [
"spec/ndx-nirs.namespace.yaml",
"spec/ndx-nirs.extensions.yaml",
]
},
"classifiers": [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
"zip_safe": False,
}
def _copy_spec_files(project_dir):
ns_path = os.path.join(project_dir, "spec", "ndx-nirs.namespace.yaml")
ext_path = os.path.join(project_dir, "spec", "ndx-nirs.extensions.yaml")
dst_dir = os.path.join(project_dir, "src", "pynwb", "ndx_nirs", "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__":
_copy_spec_files(os.path.dirname(__file__))
setup(**setup_args)