-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (33 loc) · 1.24 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
from setuptools import setup, find_packages
setup(name="syndisc",
packages=find_packages(),
provides=["syndisc"],
version="0.1",
author="Pedro Mediano and Fernando Rosas",
url="https://www.information-dynamics.org",
install_requires=[
"dit>=1.5",
"pypoman",
"cvxopt",
"numpy",
"scipy",
"networkx>=3.1",
"matplotlib", # Actually required by pypoman
],
long_description=open("README.md").read(),
license="BSD",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
)