-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 871 Bytes
/
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
# coding=utf-8
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
__author__ = 'jbean'
setup(
name='dbackups',
version='0.5.5',
description='A simple python application that makes database backups a little easier.',
url='https://github.com/jeffbean/dbackups',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
author='Jeffrey Bean',
author_email='jrb3330@gmail.com',
include_package_data=True,
entry_points={
'console_scripts': [
'dbackupscron = bin.backup_cron:main',
'dbackups_cli = bin.backup_runner:main',
],
},
exclude_package_data={'': ['.gitignore']},
install_requires=open('requirements.txt').read(),
setup_requires=open('setup_requirements.txt').read(),
tests_require=['mock'],
zip_safe=False,
)