-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (23 loc) · 853 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
26
from setuptools import setup, find_packages
setup(
name="pydaptivefiltering",
packages=find_packages(
include=["pydaptivefiltering", "pydaptivefiltering.*"]),
version='0.5',
description="A modern Python implementation of the AdaptiveFiltering toolbox.",
author="Bruno Lima Netto",
author_email="[email protected]",
url="https://github.com/BruninLima",
download_url="https://github.com/BruninLima/PydaptiveFiltering/archive/refs/tags/v0.3.tar.gz",
keywords=["Adaptive", "Filtering", "Digital", "Signal", "Processing"],
install_requires=[
'numpy',
'time',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3'
]
)