18 lines
417 B
Python
18 lines
417 B
Python
from setuptools import setup
|
|
|
|
exec(open('src/artproducts/version.py').read())
|
|
|
|
setup(
|
|
name="artproducts",
|
|
version=__version__,
|
|
author="M.Pavlinsky SRG/ART-XC software team",
|
|
description="high-level products extraction",
|
|
package_dir={"": "src"},
|
|
packages=["artproducts"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"artproducts = artproducts.products:main",
|
|
]
|
|
},
|
|
)
|