-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 723 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
setuptools.setup(
name="blase",
version="0.3",
author="gully",
author_email="igully@gmail.com",
description="Forward Modeling echelle spectra with PyTorch",
long_description="Hybrid data/model-driven forward modeling of echelle spectra",
long_description_content_type="text/markdown",
url="https://github.com/gully/blase",
install_requires=["numpy", "scipy", "torch", "tqdm", "kornia"],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)