-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 967 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
30
31
32
33
from ez_setup import use_setuptools
use_setuptools(version='0.6c11')
from setuptools import setup, find_packages
version = '0.1'
setup(name='pypgbackup',
version=version,
description="Utility for make total or only single database postgresql backups",
long_description="""\
Utility for make total or only single database postgresql backups""",
classifiers=[],
keywords='postgresql backup',
author='Simone Dalla',
author_email='[email protected]',
url='www.comune.zolapredosa.bo.it',
license='GPL',
packages = find_packages('src'),
package_dir = {'':'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'nose',
],
entry_points = {
'console_scripts' : [
'pypgbackup = pypgbackup.application:main'
],
},
# use nose to run tests
test_suite = 'nose.collector'
)