-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 927 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name = 'spamm',
version = '0.0.1',
description = 'AGN spectral Bayesian decomposition',
keywords = ['astronomy'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules'],
packages = find_packages(),
install_requires = ['setuptools',
'numpy',
'astropy',
'matplotlib',
'scipy>=0.17.1',
'emcee==2.2.1',
'pysynphot']
)