-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.08 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
from setuptools import setup, find_packages
long_description = open('README.md').read()
setup(
name="SpenderQ",
description="Spectrum autoencoder for Quasar Reconstruction",
long_description=long_description,
long_description_content_type='text/markdown',
version="0.0.0",
license="MIT",
author="ChangHoon Hahn",
author_email="[email protected]",
url="https://github.com/changhoonhahn/SpenderQ",
packages=find_packages(where="src"), #["spenderq"],
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy"
],
keywords = ['spectroscopy','autoencoder','quasars'],
install_requires=["torch", "numpy", "accelerate", "torchinterp1d", "astropy", "humanize", "psutil", "GPUtil", "nflows"]
)