starbash 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of starbash might be problematic. Click here for more details.
- starbash/__init__.py +6 -0
- starbash/app.py +228 -0
- starbash/appdefaults.sb.toml +89 -0
- starbash/commands/__init__.py +0 -0
- starbash/commands/repo.py +51 -0
- starbash/database.py +75 -0
- starbash/main.py +27 -0
- starbash/repo/__init__.py +7 -0
- starbash/repo/manager.py +248 -0
- starbash/tool.py +260 -0
- starbash-0.1.0.dist-info/LICENSE +674 -0
- starbash-0.1.0.dist-info/METADATA +82 -0
- starbash-0.1.0.dist-info/RECORD +15 -0
- starbash-0.1.0.dist-info/WHEEL +4 -0
- starbash-0.1.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: starbash
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary:
|
|
5
|
+
Author: Kevin Hester
|
|
6
|
+
Author-email: kevinh@geeksville.com
|
|
7
|
+
Requires-Python: >=3.12,<3.15
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Requires-Dist: astropy (>=7.1.1,<8.0.0)
|
|
11
|
+
Requires-Dist: multidict (>=6.7.0,<7.0.0)
|
|
12
|
+
Requires-Dist: platformdirs (>=4.5.0,<5.0.0)
|
|
13
|
+
Requires-Dist: restrictedpython (>=8.1,<9.0)
|
|
14
|
+
Requires-Dist: rich (>=14.2.0,<15.0.0)
|
|
15
|
+
Requires-Dist: tinydb (>=4.8.2,<5.0.0)
|
|
16
|
+
Requires-Dist: tomlkit (>=0.13.3,<0.14.0)
|
|
17
|
+
Requires-Dist: typer (>=0.20.0,<0.21.0)
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Starbash
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
A tool for automating/standardizing/sharing astrophotography workflows.
|
|
24
|
+
|
|
25
|
+
# Current status
|
|
26
|
+
|
|
27
|
+
Not quite ready 😊. But making good progress.
|
|
28
|
+
|
|
29
|
+
See my personal [TODO](TODO.md) file. I'll be looking for pre-alpha testers/feedback soon.
|
|
30
|
+
|
|
31
|
+
## features
|
|
32
|
+
|
|
33
|
+
* Automatically recognizes and auto-parses the default NINA, Asiair and Seestar raw file repo layouts (adding support for other layouts is easy)
|
|
34
|
+
* Automatically performs preprocessing on OSC (broadband, narrowband or dual Duo filter), Mono (LRGB, SHO) data
|
|
35
|
+
* Multisession support by default (including auto selection of correct flats, biases and dark frames)
|
|
36
|
+
* Generates a per target report/config file which can be customized if the detected defaults are not what you want
|
|
37
|
+
* 'Recipes' provide repeatable/human-readable/sharable descriptions of all processing steps
|
|
38
|
+
* 'Repos' can contain raw files, generated masters, preprocessed files, or recipes.
|
|
39
|
+
* Repos can be on the local disk or shared via HTTPS/github/etc. This is particularly useful for recipe repos
|
|
40
|
+
|
|
41
|
+
## Supported commands
|
|
42
|
+
|
|
43
|
+
* setup - configure for you via a brief guided process
|
|
44
|
+
* info - show user preferences location and other app info
|
|
45
|
+
|
|
46
|
+
* repo add file/path|URL
|
|
47
|
+
* repo remove REPONAME|REPONUM
|
|
48
|
+
* repo list
|
|
49
|
+
* repo reindex REPONAME|REPONUM|all
|
|
50
|
+
|
|
51
|
+
* target list
|
|
52
|
+
* target select TARGETNAME
|
|
53
|
+
|
|
54
|
+
* reset - remove any filters on targets, sessions, etc...
|
|
55
|
+
|
|
56
|
+
* session list
|
|
57
|
+
* session date after DATE
|
|
58
|
+
* session date before DATE
|
|
59
|
+
|
|
60
|
+
* instrument list
|
|
61
|
+
|
|
62
|
+
* export dirs|BIAS|LIGHT|DARK|FLAT [DIRLOC]
|
|
63
|
+
|
|
64
|
+
* process auto
|
|
65
|
+
|
|
66
|
+
## Supported tools
|
|
67
|
+
|
|
68
|
+
* Siril
|
|
69
|
+
* Graxpert
|
|
70
|
+
|
|
71
|
+
# Future status
|
|
72
|
+
|
|
73
|
+
## Supported tools
|
|
74
|
+
|
|
75
|
+
* Pixinsight?
|
|
76
|
+
* Autostakkert?
|
|
77
|
+
|
|
78
|
+
## Features
|
|
79
|
+
|
|
80
|
+
* The target report can be used to auto generate a human friendly 'postable/sharable' report about that image
|
|
81
|
+
* Target reports are sharable so that you can request comments by others and others can rerender with different settings
|
|
82
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
starbash/__init__.py,sha256=co39eIssQlFxWfO3cDhp52reRy6qEyJX5u5K8OsxiDk,138
|
|
2
|
+
starbash/app.py,sha256=8f1OSJPlgSMri8kMFrQ6nac5M1gAgPl-FRnuXeOWMAQ,8754
|
|
3
|
+
starbash/appdefaults.sb.toml,sha256=YTUwTqg2DcDFs9VDB1gqchNqk-hg_cGlpaa134hLOJU,2606
|
|
4
|
+
starbash/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
starbash/commands/repo.py,sha256=Xg9aaaURrv45bJF5w4rsD2X5_FdeM4dp9d9xbGaG4Ds,985
|
|
6
|
+
starbash/database.py,sha256=HFJI0CAQIFfKGx3yTS7anREAcvjiNZhObwyAbD5WD48,2254
|
|
7
|
+
starbash/main.py,sha256=VNV2y8pz_NMbGXjIDuFIDbbS0Q0B5GMqKTXitFf1tb4,579
|
|
8
|
+
starbash/repo/__init__.py,sha256=TqspuLjPSNnO38tvCGa0fJvvasgecHl6fE7m0-Lj8ho,148
|
|
9
|
+
starbash/repo/manager.py,sha256=jOhN-Rx60rtueLsHLoVdvcyWTDOqfUGZN6nbbJzRntI,8586
|
|
10
|
+
starbash/tool.py,sha256=S1kOTbeHTrA0meqwftgL0SA4VhJdZWWx2h1Wtwu1Izg,8749
|
|
11
|
+
starbash-0.1.0.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
12
|
+
starbash-0.1.0.dist-info/METADATA,sha256=N1fSGzjmBFEWL5V7uxbwcGbS3X_UExpxja4cZjA3KIE,2564
|
|
13
|
+
starbash-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
14
|
+
starbash-0.1.0.dist-info/entry_points.txt,sha256=REQyWs8e5TJsNK7JVVWowKVoytMmKlUwuFHLTmSX4hc,67
|
|
15
|
+
starbash-0.1.0.dist-info/RECORD,,
|