File tree 5 files changed +9
-28
lines changed
5 files changed +9
-28
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ __pycache__/
3
3
* .py [cod ]
4
4
* $py.class
5
5
6
+ # ruff
7
+ .ruff_cache
8
+
6
9
# C extensions
7
10
* .so
8
11
@@ -69,19 +72,6 @@ coverage.xml
69
72
* .mo
70
73
* .pot
71
74
72
- # Django stuff:
73
- * .log
74
- local_settings.py
75
- db.sqlite3
76
- db.sqlite3-journal
77
-
78
- # Flask stuff:
79
- instance /
80
- .webassets-cache
81
-
82
- # Scrapy stuff:
83
- .scrapy
84
-
85
75
# Sphinx documentation
86
76
docs /_build /
87
77
@@ -108,13 +98,6 @@ ipython_config.py
108
98
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
109
99
__pypackages__ /
110
100
111
- # Celery stuff
112
- celerybeat-schedule
113
- celerybeat.pid
114
-
115
- # SageMath parsed files
116
- * .sage.py
117
-
118
101
# Environments
119
102
.env
120
103
.venv
Original file line number Diff line number Diff line change 77
77
rm -rf __pycache__
78
78
rm -rf venv
79
79
rm -rf dist
80
+ rm -rf site
80
81
rm -rf htmlcov
81
82
82
83
.PHONY : install shell build publish clean example
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ p = sp.ZenithPlot(
53
53
resolution = 2000 ,
54
54
)
55
55
p.plot_object(
56
- SkyObject(
56
+ sp. SkyObject(
57
57
name = " Mel 111" ,
58
58
ra = 12.36 ,
59
59
dec = 25.85 ,
@@ -88,7 +88,7 @@ style = sp.styles.MAP_BLUE.extend(
88
88
style.star.label.font_size = 11
89
89
90
90
p = sp.MapPlot(
91
- projection = Projection.MERCATOR ,
91
+ projection = sp. Projection.MERCATOR ,
92
92
ra_min = 3.6 ,
93
93
ra_max = 7.8 ,
94
94
dec_min = - 16 ,
@@ -98,7 +98,7 @@ p = sp.MapPlot(
98
98
resolution = 4000 ,
99
99
)
100
100
p.plot_object(
101
- SkyObject(
101
+ sp. SkyObject(
102
102
name = " M42" ,
103
103
ra = 5.58333 ,
104
104
dec = - 4.61 ,
Original file line number Diff line number Diff line change 17
17
theme :
18
18
name : material
19
19
palette :
20
- # Palette toggle for light mode
20
+ # toggle for light mode
21
21
- scheme : default
22
22
primary : custom
23
23
toggle :
24
24
icon : material/brightness-7
25
25
name : Switch to dark mode
26
26
27
- # Palette toggle for dark mode
27
+ # toggle for dark mode
28
28
- scheme : slate
29
29
primary : custom
30
30
toggle :
34
34
favicon : images/favicon.png
35
35
features :
36
36
- content.code.copy
37
- # - navigation.expand
38
37
- toc.integrate
39
38
40
39
extra_css :
@@ -51,8 +50,6 @@ plugins:
51
50
docstring_section_style : list
52
51
53
52
markdown_extensions :
54
- # - toc:
55
- # permalink: true
56
53
- admonition
57
54
- md_in_html
58
55
- pymdownx.highlight :
You can’t perform that action at this time.
0 commit comments