-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
25 lines (23 loc) · 1023 Bytes
/
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
from distutils.core import setup
import io
with io.open('README.rst', mode='r', encoding='utf-8') as desc_file:
long_description = desc_file.read()
setup(
name='adaptfilt',
packages=['adaptfilt'], # this must be the same as the name above
version='0.3',
description='Adaptive filtering module for Python',
long_description=long_description,
author='Jesper Wramberg & Mathias Tausen',
author_email='jesper.wramberg@gmail.com & mathias.tausen@gmail.com',
url='https://github.com/Wramberg/adaptfilt', # use the URL to the github repo
keywords=['adaptive filter', 'adaptive filtering', 'signal processing', 'lms', 'apa', 'nlms', 'rls'], # arbitrary keywords
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license='MIT',
)