-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 724 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 724 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
from setuptools import setup, Extension
import setuptools
import os, sys
# get __version__, __author__, and __email__
exec(open("./thresholdmodel/metadata.py").read())
setup(
name = 'thresholdmodel',
version = __version__,
author = __author__,
author_email = __email__,
url = 'https://github.com/benmaier/thresholdmodel',
license = __license__,
description = "Simulate a continuous-time threshold model on static networks.",
long_description = '',
packages = setuptools.find_packages(),
setup_requires = [
],
install_requires = [
'networkx>=2.0',
'numpy>=1.14',
],
include_package_data = True,
zip_safe = False,
)