forked from bjorneju/substrate_modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 745 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 745 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
from setuptools import setup
setup(
name="substrate_modeler",
version="0.1.0",
description="Create pyphi substrates from the ground up",
url="https://github.com/bjorneju/substrate_modeler",
author="Bjørn E juel",
author_email="bjorneju@gmail.com",
license="BSD 2-clause",
packages=["substrate_modeler"],
install_requires=[
"tqdm",
"numpy",
"pandas",
"networkx",
"pyphi",
"matplotlib",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
],
)