lasp/setup.py

43 lines
1.2 KiB
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, find_packages
2018-01-29 15:14:50 +00:00
2019-06-14 09:17:03 +00:00
# class CMakeExtension(Extension):
# """
# An extension to run the cmake build
#
# This simply overrides the base extension class so that setuptools
# doesn't try to build your sources for you
# """
#
# def __init__(self, name, sources=[]):
#
# super().__init__(name=name, sources=sources)
2018-01-29 15:14:50 +00:00
setup(
name="LASP",
2018-01-29 15:14:50 +00:00
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']},
2018-01-29 15:14:50 +00:00
author='J.A. de Jong - ASCEE',
author_email="j.a.dejong@ascee.nl",
2018-12-30 15:45:39 +00:00
install_requires=['matplotlib>=1.0',
'scipy>=1.0', 'numpy>=1.0', 'h5py',
'dataclasses_json',
2019-06-14 09:17:03 +00:00
],
2018-01-29 15:14:50 +00:00
license='MIT',
description="Library for Acoustic Signal Processing",
keywords="",
url="https://www.ascee.nl/lasp/", # project home page, if any
2018-01-29 15:14:50 +00:00
)