initial project code commit

This commit is contained in:
2026-04-22 13:15:55 +03:00
parent e624299842
commit 9dcc2f9473
69 changed files with 7387 additions and 0 deletions

17
artpipeline/setup.py Normal file
View File

@@ -0,0 +1,17 @@
from setuptools import setup
exec(open('src/artpipeline/version.py').read())
setup(
name="artpipeline",
version=__version__,
author="M.Pavlinsky SRG/ART-XC software team",
description="data reduction pipeline",
package_dir={"": "src"},
packages=["artpipeline"],
entry_points={
"console_scripts": [
"artpipeline = artpipeline.pipeline:main",
]
},
)