-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 805 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# setup.py
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='phiplot',
version='0.0.1',
description='Python tools for plotting IIT figures',
author='Graham Findlay',
url='http://github.com/grahamfindlay/phiplot',
license='GNU General Public License v3.0',
packages=['phiplot'],
install_requires=['numpy', 'pyphi'],
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',
]
)