18 lines
410 B
Python
18 lines
410 B
Python
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",
|
|
]
|
|
},
|
|
)
|