-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
35 lines (34 loc) · 1.03 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
import os
from setuptools import setup
setup(
name="pynm",
version="v0.1-alpha.1",
author="Annabelle HARVEY, Guillaume DUMAS",
author_email="[email protected], [email protected]",
description=("Python implementation of Normative Modelling",
"with Gaussian Processes, LOESS & Centiles approaches."),
license="BSD",
keywords="gaussian processes statistics modeling",
url="https://github.com/ppsp-team/PyNM",
packages=['pynm', 'test'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'pynm = pynm.cli:main',
],
},
install_requires=[
'matplotlib >= 3.3.4',
'numpy >= 1.18.5',
'pandas >= 1.1.5',
'scikit_learn >= 0.24.1',
'scipy >= 1.5.3',
'seaborn >= 0.11.1',
'statsmodels >= 0.12.2',
'tqdm == 4.59.0'
],
)