-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.11 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
31
32
33
34
35
36
37
import setuptools
from setuptools import setup
setup(
name="sccala-sniip",
version="0.1",
author="Alexander Holas",
description="Standardisation Framework for Core-Collapse Supernovae and Line Analysis Toolkit",
url="http://github.com/AlexHls/Sccala",
author_email="[email protected]",
license="GPLv2",
project_urls={
"Bug Tracker": "https://github.com/AlexHls/Sccala/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv2",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
# packages=['sccala'],
python_requires=">=3.10",
scripts=[
"bin/sccala-photometry",
"bin/sccala-linefit",
"bin/sccala-velocity-interpolation",
"bin/sccala-photometry-interpolation",
"bin/sccala-gen-testdata",
"bin/sccala-scm",
"bin/sccala-bootstrap",
"bin/sccala-project-init",
"bin/collect-scm-data",
"bin/sccala-deblind",
"bin/sccala-aks-correction",
],
)