[libfann] 174/242: *** empty log message ***

Christian Kastner chrisk-guest at moszumanska.debian.org
Sat Oct 4 21:10:40 UTC 2014


This is an automated email from the git hooks/post-receive script.

chrisk-guest pushed a commit to tag Version2_0_0
in repository libfann.

commit 5bc89606ec5464e6a52ad4e2df89839f7d202e0b
Author: Steffen Nissen <lukesky at diku.dk>
Date:   Fri Apr 1 15:55:34 2005 +0000

    *** empty log message ***
---
 python/setup_unix.py | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/python/setup_unix.py b/python/setup_unix.py
new file mode 100755
index 0000000..16cc8cd
--- /dev/null
+++ b/python/setup_unix.py
@@ -0,0 +1,38 @@
+#!/usr/bin/env python
+from distutils.core import setup, Extension
+#from glob import glob
+
+VERSION='1.2.0'
+
+LONG_DESCRIPTION="""\
+Fast Artificial Neural Network Library implements multilayer
+artificial neural networks with support for both fully connected
+and sparsely connected networks. It includes a framework for easy 
+handling of training data sets. It is easy to use, versatile, well 
+documented, and fast. 
+"""
+
+module1 = Extension(
+    '_libfann', 
+    sources = ['libfann.i', 'fann_helper.c'], 
+    libraries = ['fann'],
+    #extra_objects = glob('../src/fann*.o'),
+    )
+
+setup(
+    name='pyfann',
+    version=VERSION,
+    description='Fast Artificial Neural Network Library (fann)',
+    long_description=LONG_DESCRIPTION,
+    author='Steffen Nissen',
+    author_email='lukesky at diku.dk',
+    maintainer='Gil Megidish',
+    maintainer_email='gil at megidish.net',
+    url='http://sourceforge.net/projects/fann/',
+    license='GNU LESSER GENERAL PUBLIC LICENSE (LGPL)',
+    platforms='UNIX',
+
+    ext_modules = [module1],
+    py_modules = ['libfann', 'fann']
+    )
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/libfann.git



More information about the debian-science-commits mailing list