forked from pybrain/pybrain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (17 loc) · 629 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (17 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env python2.5
# -*- coding: utf-8 -*-
__author__ = 'Justin S Bayer, bayer.justin@googlemail.com'
from setuptools import setup, find_packages
setup(
name="PyBrain",
version="0.3.3",
description="PyBrain is the Swiss army knife for neural networking.",
license="BSD",
keywords="Neural Networks Machine Learning",
url="http://pybrain.org",
packages=find_packages(exclude=['examples', 'docs']),
include_package_data=True,
test_suite='pybrain.tests.runtests.make_test_suite',
package_data={'pybrain': ['rl/environments/ode/models/*.xode']},
install_requires = ["scipy"],
)