-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (27 loc) · 1.03 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
from setuptools import setup
long_description = open('README.md').read()
setup(
name="spender",
description="Spectrum encoder and decoder",
long_description=long_description,
long_description_content_type='text/markdown',
version="0.2.6",
license="MIT",
author="Peter Melchior",
author_email="peter.m.melchior@gmail.com",
url="https://github.com/pmelchior/spender",
packages=["spender", "spender.data"],
package_data={"spender.data": ['*.txt']},
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'],
install_requires=["torch", "numpy", "accelerate", "torchinterp1d", "astropy", "humanize", "psutil", "GPUtil", "nflows"]
)