File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ def get_content(name, splitlines=False):
23
23
return content
24
24
25
25
26
- class basemap_data_sdist (sdist ):
27
- """Custom `sdist` so that it will force to save in zip format."""
26
+ class sdist_zip (sdist ):
27
+ """Custom `sdist` that saves source distributions in zip format."""
28
28
29
29
def initialize_options (self ):
30
30
"""Call `initialize_options` and then set zip as default format."""
@@ -141,7 +141,7 @@ def _default_to_zip(self):
141
141
"<4" ,
142
142
]),
143
143
"cmdclass" : {
144
- "sdist" : basemap_data_sdist ,
144
+ "sdist" : sdist_zip ,
145
145
},
146
146
"project_urls" : {
147
147
"Bug Tracker" :
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ def get_content(name, splitlines=False):
23
23
return content
24
24
25
25
26
- class basemap_data_hires_sdist (sdist ):
27
- """Custom `sdist` so that it will force to save in zip format."""
26
+ class sdist_zip (sdist ):
27
+ """Custom `sdist` that saves source distributions in zip format."""
28
28
29
29
def initialize_options (self ):
30
30
"""Call `initialize_options` and then set zip as default format."""
@@ -119,7 +119,7 @@ def _default_to_zip(self):
119
119
"<4" ,
120
120
]),
121
121
"cmdclass" : {
122
- "sdist" : basemap_data_hires_sdist ,
122
+ "sdist" : sdist_zip ,
123
123
},
124
124
"project_urls" : {
125
125
"Bug Tracker" :
You can’t perform that action at this time.
0 commit comments