-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (35 loc) · 1.04 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
41
42
43
44
45
from setuptools import setup
import codecs
with codecs.open("README.rst", encoding="utf-8") as f:
long_description = f.read()
setup(
name = "pyPGdiff",
version = "0.1.3",
description = "Generate on-the-fly migrations between PostgreSQL schemas",
long_description = long_description,
url = "https://github.com/thugdoubt/pypgdiff",
author = "Nick Purvis",
author_email = "[email protected]",
license = "GPLv2",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: SQL",
],
keywords = "sql postgresql migration",
packages = [
"pypgdiff",
],
install_requires = [
"psycopg2",
],
entry_points = {
"console_scripts": [
"pypgdiff=pypgdiff:main",
],
},
)