lasp/setup.py

24 lines
617 B
Python
Raw Normal View History

2018-01-29 15:14:50 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: J.A. de Jong - ASCEE
"""
from setuptools import setup
descr = """Library for Acoustic Signal Processing. This Python module contains
tools and code for common operations on acoustic signals."""
2018-01-29 15:14:50 +00:00
setup(
name="LASP",
2018-01-29 15:14:50 +00:00
version="1.0",
packages=['lasp'],
2018-01-29 15:14:50 +00:00
author='J.A. de Jong - ASCEE',
author_email="j.a.dejong@ascee.nl",
install_requires=['matplotlib>=1.0', 'scipy>=1.0', 'numpy>=1.0'],
2018-01-29 15:14:50 +00:00
license='MIT',
description=descr,
keywords="",
url="https://www.ascee.nl/lasp/", # project home page, if any
2018-01-29 15:14:50 +00:00
)