-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 1.1 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
from setuptools import setup
setup(
name='pyArtacs',
version='0.0.1',
description='Toolbox for removal of periodic artifacts.',
long_description='A Python toolbox for removal of artifact caused by transcranial periodic, especially alternating current stimulation (tACS).',
author='Robert Guggenberger',
author_email='[email protected]',
url='https://github.com/agricolab/pyArtacs',
download_url='https://github.com/agricolab/pyArtacs.git',
license='MIT',
packages=['artacs'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Brain Stimulation',
'Topic :: Scientific/Engineering :: Signal Processing',
]
)