Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bo Zhang
csst
Commits
910c2586
Commit
910c2586
authored
Mar 02, 2022
by
BO ZHANG
🏀
Browse files
moved __version__ to __init__.py
parent
1550e23a
Changes
2
Show whitespace changes
Inline
Side-by-side
csst/__init__.py
View file @
910c2586
__version__
=
"0.0.1"
\ No newline at end of file
__version__
=
"0.0.4"
setup.py
View file @
910c2586
import
setuptools
import
csst
with
open
(
"README.md"
,
"r"
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
name
=
'csst'
,
version
=
'0.0.3'
,
version
=
csst
.
__version__
,
author
=
'CSST Team'
,
author_email
=
'bozhang@nao.cas.cn'
,
description
=
'The CSST pipeline'
,
# short description
...
...
@@ -24,5 +25,6 @@ setuptools.setup(
package_dir
=
{
'csst'
:
'csst'
},
include_package_data
=
False
,
package_data
=
{
""
:
[
"LICENSE"
,
"README.md"
]},
requires
=
[
'numpy'
,
'scipy'
,
'astropy'
,
'joblib'
]
requires
=
[
'numpy'
,
'scipy'
,
'astropy'
],
python_requires
=
'>=3.9.7'
,
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment