-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
74 lines (68 loc) · 2.36 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
71
72
73
74
# -*- coding: utf-8 -*-
import versioneer
from setuptools import setup, find_packages
with open('README.rst', 'r') as fp:
readme = fp.read()
setup_args = {
'name': 'hdmf_docutils',
'version': versioneer.get_version(),
'cmdclass': versioneer.get_cmdclass(),
'description': 'Collection of CLIs, scripts and modules useful to generate the NWB documentation',
'long_description': readme,
'long_description_content_type': 'text/x-rst; charset=UTF-8',
'author': 'Oliver Ruebel',
'author_email': '[email protected]',
'url': 'https://github.com/hdmf-dev/hdmf-docutils',
'license': "BSD",
'install_requires': [
'matplotlib',
'networkx',
'hdmf',
'pillow',
'sphinx',
'sphinx-gallery',
'sphinx_rtd_theme',
'ruamel.yaml'
],
'setup_requires': 'pytest-runner',
'packages': find_packages(),
'package_data': {'hdmf_docutils': ["*.ipynb"]},
'entry_points': {
'console_scripts': [
'hdmf_generate_format_docs=hdmf_docutils.generate_format_docs:main',
'nwb_generate_format_docs=hdmf_docutils.generate_format_docs:nwb_main',
'hdmf_init_sphinx_extension_doc=hdmf_docutils.init_sphinx_extension_doc:main',
'nwb_init_sphinx_extension_doc=hdmf_docutils.init_sphinx_extension_doc:nwb_main',
]
},
'classifiers': [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: Unix",
"Topic :: Documentation :: Sphinx",
],
'keywords': 'Neuroscience '
'python '
'HDF '
'HDF5 '
'cross-platform '
'open-data '
'data-format '
'open-source '
'open-science '
'reproducible-research '
'NWB '
'NWB:N '
'NeurodataWithoutBorders',
'zip_safe': False
}
if __name__ == '__main__':
setup(**setup_args)