-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 1.11 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="enigma_anonymize_lite",
version="0.1",
author="Jeff Stout and Allison Nugent",
author_email="[email protected]",
description="Helper utilities for anonymizing and bids processing of rest data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nih-megcore/enigma_anonymization_lite",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: UNLICENSE",
"Operating System :: Linux/Unix",
],
python_requires='>=3.6',
install_requires=['mne>=1.2', 'mne_bids>=0.11', 'joblib', 'nibabel', 'wget',
'multiprocess', 'pandas', 'pysimplegui-4-foss', 'pyqt5'],
scripts=['enigma_anonymization_lite/enigma_anonymization_mne.py','enigma_anonymization_lite/enigma_anon_QA.py','enigma_anonymization_lite/update_json_bstorm.py','enigma_anonymization_lite/enigma_anon_parseQAlogs.py'],
include_package_data=True,
)