-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (27 loc) · 957 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
26
27
28
29
30
31
# encoding: utf8
'Packaging configuration.'
from setuptools import setup # type: ignore
setup() # everything configured via pyproject.toml
# author="Cobrawap authors and contributors",
# author_email="[email protected]",
# description="Collaborative Brain Wave Analysis Pipeline (Cobrawap)",
#
# entry_points={
# 'console_scripts': [
# 'cobrawap = cobrawap.__main__:main',
# ],
# },
#
# license="GPL-3.0-or-later",
#
# url='https://github.com/INM-6/cobrawap',
# # https://pypi.org/pypi?:action=list_classifiers
# classifiers=[
# 'Development Status :: 2 - Pre-Alpha',
# 'Intended Audience :: Science/Research',
# 'License :: OSI Approved :: GPL-3.0-or-later',
# 'Natural Language :: English',
# 'Operating System :: OS Independent',
# 'Programming Language :: Python :: 3',
# 'Topic :: Scientific/Engineering']
# )