-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
52 lines (47 loc) · 1.75 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# setup.py - installation script for this package
#
# Copyright 2015 Jeffrey Finkelstein.
#
# This file is part of Birkhoff.
#
# Birkhoff is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# Birkhoff is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# Birkhoff. If not, see <http://www.gnu.org/licenses/>.
"""Birkhoff--von Neumann decomposition for doubly stochastic matrices.
* `Documentation <http://birkhoff.readthedocs.org>`_
* `Packaging <http://pypi.python.org/pypi/birkhoff>`_
* `Source code <http://github.com/jfinkels/birkhoff>`_
* `Issues <http://github.com/jfinkels/birkhoff/issues>`_
"""
from setuptools import setup
#: Installation requirements.
requirements = ['numpy', 'networkx>=2.0']
setup(
author='Jeffrey Finkelstein',
author_email='[email protected]',
#classifiers=[],
description=('Birkhoff--von Neumann decomposition for doubly stochastic'
' matrices'),
download_url='https://github.com/jfinkels/birkhoff',
install_requires=requirements,
include_package_data=True,
#keywords=[],
license='GNU GPLv3+',
long_description=__doc__,
name='birkhoff',
platforms='any',
py_modules=['birkhoff'],
test_suite='nose.collector',
tests_require=['nose'],
url='https://github.com/jfinkels/birkhoff',
version='0.0.6.dev0',
zip_safe=False
)