-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (36 loc) · 1.18 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
d = {}
exec(open("ghibtools/version.py").read(), None, d)
version = d['version']
install_requires = [
'numpy',
'scipy',
'pandas',
'xarray',
'matplotlib',
'scikit-learn',
'neurokit2',
'seaborn',
'pingouin',
]
long_description = ""
setup(
name = "ghibtools",
version = version,
packages = ['ghibtools'],
install_requires=install_requires,
author = "V. Ghibaudo",
author_email = "valentin.ghibaudo@inserm.fr",
description = "Toolbox from Valentin Ghibaudo, Neuroscience PhD Student",
long_description = long_description,
license = "MIT",
url='https://github.com/ValentinGhibaudo/ghibtools',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering']
)