We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c2d69 commit e21e265Copy full SHA for e21e265
ACedIt/install_entry.py
@@ -2,6 +2,7 @@
2
import os
3
from setuptools.command.install import install
4
5
+
6
class InstallEntry(install):
7
8
def run(self):
@@ -22,4 +23,5 @@ def run(self):
22
23
data = {'default_site': default_site.strip(), 'workdir': os.path.expanduser('~'),
24
'cachedir': cache_dir}
25
with open(os.path.join(cache_dir, 'constants.json'), 'w') as f:
- f.write(json.dumps(data, indent=2))
26
+ f.write(json.dumps(data, indent=2))
27
+ install.run(self)
0 commit comments