-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 836 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 836 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
install_reqs = parse_requirements("requirements.txt", session=False)
reqs = [str(ir.req) for ir in install_reqs]
dep_links = [str(req_line.url) for req_line in install_reqs]
setup(
name="bb_network_decomposition",
version="0.1",
description="Decompose temporal social network using spectral decomposition and CCA",
author="Benjamin Wild",
author_email="b.w@fu-berlin.de",
url="https://github.com/nebw/bb_network_decomposition/",
install_requires=reqs,
dependency_links=dep_links,
packages=["bb_network_decomposition"],
)