initial project code commit
This commit is contained in:
19
arttools/setup.py
Normal file
19
arttools/setup.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from setuptools import setup
|
||||
|
||||
# __version__ = "1.0.0"
|
||||
|
||||
exec(open('src/arttools/version.py').read())
|
||||
|
||||
setup(
|
||||
name="arttools",
|
||||
version=__version__,
|
||||
author="M.Pavlinsky SRG/ART-XC software team",
|
||||
description="SRG/ARTXC software tools",
|
||||
package_dir={"": "src"},
|
||||
packages=["arttools"],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"arttime = arttools.arttime:main"
|
||||
]
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user