-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 977 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# setup.py
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.rst") as f:
readme = f.read()
setup(
name="graphiit",
version="0.2.0",
author="Graham Findlay",
url="http://github.com/grahamfindlay/graphiit",
description="Python library for building PyPhi network graphs",
long_description=readme,
license="GNU General Public License v3.0",
install_requires=["numpy", "pyphi>=1.2.0", "networkx>=3.2.1"],
packages=["graphiit"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
)