-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
51 lines (45 loc) · 1.35 KB
/
setup.cfg
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
[metadata]
name = bids_manager
version=0.3.2
description = Package to collect, organise, manage and analyse neuroscience data in BIDS format
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Dynamap/BIDS_Manager/tree/dev
author = Roehri Nicolas, Medina Samuel, and Jegou Aude
license = GPL 3.0
license_file = LICENSE
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: Microsoft :: Windows
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
project_urls =
Documentation = https://github.com/Dynamap/BIDS_Manager/tree/dev/Tutorial.pdf
Source = https://github.com/Dynamap/BIDS_Manager/tree/dev
entry_points={'console_scripts': ['bids_manager=bids_manager:main']},
[options]
zip_safe = False
packages = find:
platforms = windows
include_package_data = True
install_requires =
PyQt5 >=5.15.0
pydicom
paramiko
bids_validator
scipy
xlrd
nibabel
tkcalendar
pywin32 >=228;platform_system=='Windows'
pysimplegui
openpyxl
python_requires = >=3.7
[bdist_wheel]
universal = 1
[options.entry_points]
console_scripts =
bids_manager = bids_manager:main