-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
39 lines (38 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
import os
from setuptools import setup
setup(
name="pynm",
version="1.0.1",
author="Annabelle HARVEY, Guillaume DUMAS",
author_email="[email protected], [email protected]",
description=("Python implementation of Normative Modelling",
"with GAMLSS, Gaussian Processes, LOESS & Centiles approaches."),
long_description_content_type="text/x-rst",
license="BSD",
keywords="gaussian processes statistics modeling",
url="https://github.com/ppsp-team/PyNM",
packages=['pynm', 'test', 'pynm/models'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'pynm = pynm.cli:main',
],
},
install_requires=[
'gpytorch >= 1.4.0',
'matplotlib >= 3.3.4',
'numpy >= 1.19.5',
'pandas >= 1.1.5',
'rpy2 >= 3.5.4',
'scikit_learn >= 1.1.2',
'scipy >= 1.5.3',
'seaborn >= 0.12.0',
'statsmodels >= 0.13.2',
'torch >= 1.12.1',
'tqdm >= 4.59.0',
],
)