-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 953 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 953 Bytes
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
# -*- coding: utf-8 -*-
"""
Created on Sat Apr 1 13:46:47 2023
@author: danielgodinez
"""
from setuptools import setup, find_packages, Extension
setup(
name="LineDetect",
version="0.12",
author="Asif Abbas & Daniel Godines",
author_email="danielgodinez123@gmail.com",
description="A pipeline for detecting spectral lines in spectra",
license='GPL-3.0',
url = "https://github.com/Professor-G/LineDetect",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
packages=find_packages('.'),
install_requires = ['numpy', 'progress', 'astropy', 'scipy', 'matplotlib', 'pandas', 'lmfit', 'optuna'],
python_requires='>=3.7,<4',
include_package_data=False,
test_suite="nose.collector",
)