-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.31 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools","wheel","numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "snpy"
version = "2.7.3"
authors = [
{name="Chris Burns", email="cburns@carnegiescience.edu"},
]
description = "SNooPy: Supernova light-curve analysis tool"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["astronomy","supernova","science"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Astronomy"
]
dependencies = [
"oldest-supported-numpy",
"scipy",
"astropy",
"ipython",
"matplotlib",
"pandas",
"pymysql",
"scikit-learn",
"h5py",
"onnxruntime",
"emcee"]
[tool.setuptools]
packages = ["snpy","snpy.CSPtemp","snpy.SwiftTemp","snpy.dm15temp",
"snpy.filters","snpy.spline2","snpy.sqlmod","snpy.utils"]
[tool.setuptools.package-data]
"snpy.CSPtemp" = ["fits/*.fits"]
"snpy.dm15temp" = ["*.pickle"]
"snpy.utils" = ["*.pickle"]
"snpy.filters" = ["filters/*/*/*","standards/*/*"]