-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (40 loc) · 1.22 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
#!/usr/bin/env python
# try:
from setuptools import setup, find_packages
# except ImportError:
# from distutils.core import setup
def readme():
with open('README.md') as f:
return f.read()
config = {
'name': 'sinkhorn_knopp',
'version': '0.2',
'description': 'Sinkhorn-Knopp Algorithm',
'long_description': readme(),
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
'license': 'MIT',
'url': 'https://github.com/btaba/sinkhorn_knopp',
'author': 'Baruch Tabanpour',
'author_email': '[email protected]',
'license': 'MIT',
'packages': find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
'install_requires': [
'numpy>=1'
],
'zip_safe': False,
'test_suite': 'nose.collector',
'tests_require': ['nose'],
'keywords': [
'sinkhorn-knopp',
'doubly stochastic matrix'
]
}
setup(**config)