forked from Benvii/pg-dump-filtered
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 733 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='pg_dump_filtered',
packages=find_packages(),
author="Benjamin BERNARD",
author_email="benjamin.bernard@openpathview.fr",
description="Dump a postgres database partially using filters on tables and extract all related necessary datas.",
long_description=open('README.md').read(),
dependency_links=[],
install_requires=[],
# Active la prise en compte du fichier MANIFEST.in
include_package_data=True,
url='https://github.com/OpenPathView/OPV_importData',
entry_points={
'console_scripts': [
'pg-dump-filtered = pg_dump_filtered.__main__:main'
],
}
)