mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-18 08:02:49 +01:00
Remove 2to3/__pycache__ before making a source dist. Closes GH-946.
This commit is contained in:
parent
5cc9170023
commit
733349cb4a
6
setup.py
6
setup.py
@ -212,6 +212,12 @@ for plugin in plugins:
|
|||||||
if os.path.exists(locales_path):
|
if os.path.exists(locales_path):
|
||||||
package_data.update({locales_name: ['locales/'+s for s in os.listdir(locales_path)]})
|
package_data.update({locales_name: ['locales/'+s for s in os.listdir(locales_path)]})
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
shutil.rmtree('2to3/__pycache__')
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
# Metadata
|
# Metadata
|
||||||
name='limnoria',
|
name='limnoria',
|
||||||
|
Loading…
Reference in New Issue
Block a user