forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
136 lines (123 loc) · 4.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for networkx
You can install networkx with
python setup_egg.py install
"""
from glob import glob
import os
import sys
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
from distutils.core import setup
if sys.argv[-1] == 'setup.py':
print("To install, run 'python setup.py install'")
print()
if sys.version_info[:2] < (2, 6):
print("NetworkX requires Python version 2.6 or later (%d.%d detected)." %
sys.version_info[:2])
sys.exit(-1)
# Write the version information.
sys.path.insert(0, 'networkx')
import release
version = release.write_versionfile()
sys.path.pop(0)
packages=["networkx",
"networkx.algorithms",
"networkx.algorithms.assortativity",
"networkx.algorithms.bipartite",
"networkx.algorithms.centrality",
"networkx.algorithms.chordal",
"networkx.algorithms.community",
"networkx.algorithms.components",
"networkx.algorithms.connectivity",
"networkx.algorithms.flow",
"networkx.algorithms.traversal",
"networkx.algorithms.isomorphism",
"networkx.algorithms.shortest_paths",
"networkx.algorithms.link_analysis",
"networkx.algorithms.operators",
"networkx.algorithms.approximation",
"networkx.classes",
"networkx.external",
"networkx.external.decorator",
"networkx.generators",
"networkx.drawing",
"networkx.linalg",
"networkx.readwrite",
"networkx.readwrite.json_graph",
"networkx.tests",
"networkx.testing",
"networkx.utils"]
if sys.version >= '3':
packages.append('networkx.external.decorator.decorator3')
else:
packages.append('networkx.external.decorator.decorator2')
docdirbase = 'share/doc/networkx-%s' % version
# add basic documentation
data = [(docdirbase, glob("*.txt"))]
# add examples
for d in ['advanced',
'algorithms',
'basic',
'3d_drawing',
'drawing',
'graph',
'multigraph',
'pygraphviz',
'readwrite']:
dd=os.path.join(docdirbase,'examples',d)
pp=os.path.join('examples',d)
data.append((dd,glob(os.path.join(pp,"*.py"))))
data.append((dd,glob(os.path.join(pp,"*.bz2"))))
data.append((dd,glob(os.path.join(pp,"*.gz"))))
data.append((dd,glob(os.path.join(pp,"*.mbox"))))
data.append((dd,glob(os.path.join(pp,"*.edgelist"))))
# add the tests
package_data = {
'networkx': ['tests/*.py'],
'networkx.algorithms': ['tests/*.py'],
'networkx.algorithms.assortativity': ['tests/*.py'],
'networkx.algorithms.bipartite': ['tests/*.py'],
'networkx.algorithms.centrality': ['tests/*.py'],
'networkx.algorithms.chordal': ['tests/*.py'],
'networkx.algorithms.community': ['tests/*.py'],
'networkx.algorithms.components': ['tests/*.py'],
'networkx.algorithms.connectivity': ['tests/*.py'],
'networkx.algorithms.flow': ['tests/*.py'],
'networkx.algorithms.traversal': ['tests/*.py'],
'networkx.algorithms.isomorphism': ['tests/*.py','tests/*.*99'],
'networkx.algorithms.link_analysis': ['tests/*.py'],
'networkx.algorithms.approximation': ['tests/*.py'],
'networkx.algorithms.operators': ['tests/*.py'],
'networkx.algorithms.shortest_paths': ['tests/*.py'],
'networkx.algorithms.traversal': ['tests/*.py'],
'networkx.classes': ['tests/*.py'],
'networkx.generators': ['tests/*.py'],
'networkx.drawing': ['tests/*.py'],
'networkx.linalg': ['tests/*.py'],
'networkx.readwrite': ['tests/*.py'],
'networkx.readwrite.json_graph': ['tests/*.py'],
'networkx.testing': ['tests/*.py'],
'networkx.utils': ['tests/*.py']
}
if __name__ == "__main__":
setup(
name = release.name.lower(),
version = version,
maintainer = release.maintainer,
maintainer_email = release.maintainer_email,
author = release.authors['Hagberg'][0],
author_email = release.authors['Hagberg'][1],
description = release.description,
keywords = release.keywords,
long_description = release.long_description,
license = release.license,
platforms = release.platforms,
url = release.url,
download_url = release.download_url,
classifiers = release.classifiers,
packages = packages,
data_files = data,
package_data = package_data
)