forked from vitaliyf/django-dbdump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup, find_packages
except ImportError:
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()
setup(
name = 'django-dbdump',
version = '1.0.1',
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.2',
],
)