mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
Don't download the DB if the right version is already there
Former-commit-id: e931062b5a
This commit is contained in:
parent
16bc844841
commit
351378e318
6
setup.py
6
setup.py
@ -84,13 +84,15 @@ class UploadDataCommand(SimpleCommand):
|
||||
class CustomInstallCommand(install):
|
||||
def run(self):
|
||||
install.run(self)
|
||||
self.run_command('download_db')
|
||||
if not os.path.exists(config.DB_FILENAME):
|
||||
self.run_command('download_db')
|
||||
|
||||
|
||||
class CustomDevelopCommand(develop):
|
||||
def run(self):
|
||||
develop.run(self)
|
||||
self.run_command('download_db')
|
||||
if not os.path.exists(config.DB_FILENAME):
|
||||
self.run_command('download_db')
|
||||
|
||||
|
||||
requirements = ['ftfy >= 3']
|
||||
|
Loading…
Reference in New Issue
Block a user