-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·46 lines (35 loc) · 1.12 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
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
# Get the version from __init__.py
with open('otpod/__init__.py') as fid:
for line in fid:
if line.startswith('__version__'):
version = line.strip().split()[-1][1:-1]
break
install_requires=['statsmodels>=0.6.1',
'numpy>=1.10.4',
'scikit-learn>=0.17',
'matplotlib>=1.5.1',
'scipy>=0.17.0',
'openturns>=1.18',
'decorator>=4.0.9']
setup(
# library name
name='otpod',
# code version
version=version,
# list libraries to be imported
packages=find_packages(),
author="Antoine Dumas",
# Votre email, sachant qu'il sera publique visible, avec tous les risques
# que ça implique.
author_email="dumas@phimeca.com",
# Descriptions
description="Build Probability of Detection curve",
long_description=open('README.rst').read(),
# List of dependancies
install_requires=install_requires
# Enable to take into account MANIFEST.in
# include_package_data=True,
)