forked from matousc89/padasip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.2 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
34
35
36
37
38
39
from distutils.core import setup
from setuptools import find_packages
def readme():
try:
with open('README.rst') as f:
return f.read()
except:
pass
setup(
name = 'padasip',
packages = find_packages(exclude=("tests",)),
version = '1.2.2',
description = 'Python Adaptive Signal Processing',
long_description = readme(),
author = 'Matous Cejnek',
maintainer = "Matous Cejnek",
author_email = '[email protected]',
license = 'MIT',
url = 'http://matousc89.github.io/padasip/',
download_url = 'https://github.com/matousc89/padasip/',
keywords = ['signal-processing', 'adaptive filters'],
install_requires=[
'numpy',
],
bugtrack_url = "https://github.com/matousc89/padasip/issues",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Adaptive Technologies',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Programming Language :: Python',
],
)