-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 934 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="hv_proc",
version="0.1.0",
author="Jeff Stout",
author_email="[email protected]",
description="Package to process triggers for NIMH healthy volunteer MEG protocol",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nih-megcore/hv_proc",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: UNLICENSE",
"Operating System :: Linux/Unix",
],
#python_requires='<3.9',
install_requires=['mne', 'numpy', 'scipy', 'pandas','pytest', 'seaborn',
'pyctf-lite @ git+https://github.com/nih-megcore/[email protected]#egg=pyctf-lite'],
scripts=['hv_proc/hv_process.py', 'hv_proc/utilities/clear_mrk_path.py']
)