-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.38 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.38 KB
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
34
35
36
37
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author: Stefano Brilli
# Date: 2/11/2011
# E-mail: stefanobrilli@gmail.com
from setuptools import setup, find_packages
setup(name="PyRadbas",
version="0.2.0",
description="Simple Radial Basis Function Networks in Python",
long_description="""
PyRadbas provides algorithms for building both exact and inexact RBFN.
You can also use PyRadbas to import and run your Matlab(R) RBFN.
""",
keywords =['radial', 'basis', 'function', 'matlab', 'RBF', 'RBFN'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'],
zip_safe=True,
author="Stefano Brilli",
author_email="stefanobrilli@gmail.com",
license = "FreeBSD",
packages=find_packages(),
url="http://cybercase.github.com/pyradbas/",
install_requires=["numpy"],
)