-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (38 loc) · 1.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def check_numpy_status():
has_numpy = False
try:
import numpy
has_numpy = True
except Exception:
pass
return has_numpy
def setup_package():
from setuptools import setup, find_packages
metadata = dict(
name = 'pypgm',
version = '0.0.1',
description = 'probability graph model library',
author = 'deyuhua',
author_email = '[email protected]',
packages=find_packages(exclude=['test'])
)
if not check_numpy_status:
raise Exception('Must install numpy.')
setup(**metadata)
if __name__ == '__main__':
from setuptools import setup, find_packages
metadata = dict(
name = 'pypgm',
version = '0.0.1',
description = 'probability graph model library',
author = 'deyuhua',
author_email = '[email protected]',
packages=find_packages(exclude=['test'])
)
if not check_numpy_status:
raise Exception('Must install numpy.')
setup(**metadata)
if __name__ == '__main__':
setup_package()