-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
33 lines (32 loc) · 1.01 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
#! /usr/bin/env python
# Authors: Olivier Grisel <[email protected]>
# MinRK
# LICENSE: MIT
from distutils.core import setup
setup(
name="pyrallel",
version="0.3-dev",
description="Experimental tools for parallel machine learning",
maintainer="Olivier Grisel",
maintainer_email="[email protected]",
license="MIT",
url='http://github.com/pydata/pyrallel',
packages=[
'pyrallel',
],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Development Status :: 3 - Alpha',
],
# TODO: convert README from markdown to rst
# long_description=open('README.rst').read(),
)