forked from bayerj/arac
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (18 loc) · 664 Bytes
/
setup.py
File metadata and controls
24 lines (18 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /usr/bin/env python2.6
# -*- coding: utf-8 -*-
__author__ = 'Justin S Bayer, bayer.justin@googlemail.com'
from aracsetuphelpers import (make_compiler, compile_arac, compile_test,
compile_swig)
from setuptools import setup, find_packages
setup(
name="arac",
version="0.1post",
description="Arac is a C++ library for modular neural networking.",
license="BSD",
keywords="Neural Networks Machine Learning",
packages=find_packages('./src/python'),
include_package_data=True,
package_dir={'arac': './src/python/arac'},
data_files=[('arac', ('libarac.dylib',))],
test_suite='arac.tests.runtests.make_test_suite',
)