This repository was archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Sqlserver support (pyodbc) #11
Open
alexsilva
wants to merge
8
commits into
vitaliyf:master
Choose a base branch
from
alexsilva:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3fac54d
Database backup sqlserver (pyodbc required).
alexsilva 35740cc
Changing comment string.
alexsilva ae8f8ef
Allowing the user to configure the dump tool.
alexsilva 2160846
Including pyodbc in requirements.
alexsilva 9a52d67
Bug fix: file extension being duplicated.
alexsilva 4ee104e
code reformat.
alexsilva 926499a
update coding.
alexsilva ec45459
v1.3.0
alexsilva File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# coding=utf-8 | ||
|
||
import os | ||
|
||
try: | ||
from setuptools import setup, find_packages | ||
from setuptools import setup, find_packages | ||
except ImportError: | ||
import ez_setup | ||
ez_setup.use_setuptools() | ||
from setuptools import setup, find_packages | ||
import ez_setup | ||
|
||
ez_setup.use_setuptools() | ||
from setuptools import setup, find_packages | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
setup( | ||
name = 'django-dbdump', | ||
version = '1.2', | ||
url = 'https://github.com/vitaliyf/django-dbdump/', | ||
download_url = 'https://github.com/vitaliyf/django-dbdump/', | ||
license = 'BSD', | ||
description = 'Database backup management command.', | ||
long_description=read('README.rst'), | ||
author = 'Vitaliy Fuks', | ||
author_email = '[email protected]', | ||
packages = find_packages(), | ||
include_package_data = True, | ||
platforms='any', | ||
classifiers = [ | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
], | ||
install_requires=[ | ||
'Django>=1.8', | ||
], | ||
name='django-dbdump', | ||
version='1.3.0', | ||
url='https://github.com/vitaliyf/django-dbdump/', | ||
download_url='https://github.com/vitaliyf/django-dbdump/', | ||
license='BSD', | ||
description='Database backup management command.', | ||
long_description=read('README.rst'), | ||
author='Vitaliy Fuks', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
platforms='any', | ||
classifiers=[ | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
], | ||
install_requires=[ | ||
'Django>=1.8', | ||
'pyodbc' | ||
], | ||
) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would call this POSTGRES_DUMP_TOOL as nobody really abbreviates postgres as "postgre"