29 lines
876 B
Python
29 lines
876 B
Python
#!/usr/bin/env python3.8
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
@author: J.A. de Jong - ASCEE
|
|
"""
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="LASP",
|
|
version="1.0",
|
|
packages=find_packages(),
|
|
long_description=open("./README.md", 'r').read(),
|
|
long_description_content_type="text/markdown",
|
|
# ext_modules=[CMakeExtension('lasp/wrappers.so'),
|
|
# ],
|
|
#package_data={'lasp': ['wrappers.so']},
|
|
author='J.A. de Jong - ASCEE',
|
|
author_email="j.a.dejong@ascee.nl",
|
|
install_requires=['matplotlib>=1.0',
|
|
'scipy>=1.0', 'numpy>=1.0', 'h5py',
|
|
'dataclasses_json', 'cython',
|
|
],
|
|
license='MIT',
|
|
description="Library for Acoustic Signal Processing",
|
|
keywords="",
|
|
url="https://www.ascee.nl/lasp/", # project home page
|
|
|
|
)
|