-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (37 loc) · 1.32 KB
/
setup.py
File metadata and controls
47 lines (37 loc) · 1.32 KB
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
41
42
43
44
45
46
47
import codecs
import os.path
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='postgres-db-diff',
version='0.9.1', # cause triggers, sequences are missing
description='Command line tool to compare two PostgreSQL databases',
long_description=long_description,
url='https://github.com/petraszd/postgres-db-diff',
author='Petras Zdanavicius',
author_email='petraszd@gmail.com',
keywords='postgresql database comparison command line utility',
# packages=find_packages(exclude=['contrib', 'docs', 'tests']),
py_modules=['postgresdbdiff'],
install_requires=[],
extras_require={
'dev': [],
'test': [],
},
entry_points={
'console_scripts': ['postgres-db-diff=postgresdbdiff:main'],
},
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)