-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 703 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
version = '0.1.4'
setup(
name = 'datk',
packages = ['datk', 'datk.core'],
version = version,
description = 'Distributed Algorithms Toolkit for Python',
author = 'Amin Manna',
author_email = 'datk@mit.edu',
license ='MIT',
url = 'https://github.com/amin10/datk',
download_url = 'https://github.com/amin10/datk/tarball/'+version,
keywords = ['distributed', 'algorithms', 'toolkit', 'simulator'],
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
],
install_requires=['numpy', 'SciPy>=0.9.0']
)