-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 818 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 818 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
28
29
from setuptools import setup
setup(
name="visualize_pyphi",
version="0.1.0",
description="Create beautiful cause effect structure visualizations",
url="https://github.com/matteograsso/visualize_pyphi",
author="Matteo Grasso and Bjørn E juel",
author_email="bjorneju@gmail.com",
license="BSD 2-clause",
packages=["visualize_pyphi"],
install_requires=[
"tqdm",
"numpy",
"pandas",
"plotly",
"matplotlib",
"imageio",
"kaleido",
"blackcellmagic",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
],
)