-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (43 loc) · 1.33 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
38
39
40
41
42
43
44
45
46
47
48
49
50
import re
from setuptools import setup
# access variables within .init
def get_property(prop):
result = re.search(
rf'{prop}\s*=\s*[\'"]([^\'"]*)[\'"]',
open("dasp/__init__.py").read(),
)
return result.group(1)
with open("README.md", encoding="utf-8") as infile:
long_description = infile.read()
setup(
name="dasp-stacker",
version=get_property("__version__"),
description="Dimensionally aligned signal projection library",
keywords=["signal processing", "signal", "visualization"],
long_description_content_type="text/markdown",
long_description=long_description,
author="Jacob Smith",
python_requires=">=3.9",
url="https://github.com/ORNL/DASP",
# project_urls={
# "Documentation": "https://ornl.github.io/dasp/latest/index.html"
# },
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
],
packages=["dasp"],
install_requires=[
"numpy",
"scipy",
"ipywidgets",
"matplotlib",
"ipython",
"scikit-image",
],
)