-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 1.12 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
from setuptools import find_packages, setup
def find_long_description():
with open("README.md", encoding="utf-8") as f:
return f.read()
def find_version():
with open("doa_py/__init__.py", encoding="utf-8") as f:
for line in f:
if line.startswith("__version__"):
return line.strip().split()[-1][1:-1]
return ""
setup(
name="doa_py",
version=find_version(),
packages=find_packages(),
description="DOA estimation algorithms implemented in Python",
author="Qian Xu",
author_email="[email protected]",
url="https://github.com/zhiim/doa_py",
long_description=find_long_description(),
long_description_content_type="text/markdown",
license="MIT",
install_requires=["numpy", "matplotlib", "scipy", "scikit-image", "cvxpy"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)