-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (41 loc) · 1.22 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
from setuptools import setup
import sys
if sys.version_info < (3,6):
sys.exit('Pum requires at least Python version 3.6.\nYou are currently running this installation with\n\n{}'.format(sys.version))
setup(
name = 'pum',
packages = [
'pum',
'pum/core',
'pum/utils',
],
entry_points={
'console_scripts': [
'pum = pum.__main__:main'
]
},
version = '[VERSION]',
description = 'Postgres upgrade manager',
author = 'Mario Baranzini',
author_email = 'mario@opengis.ch',
url = 'https://github.com/opengisch/pum',
download_url = 'https://github.com/opengisch/pum/archive/[VERSION].tar.gz',
keywords = [
'postgres',
'migration',
'upgrade'
],
classifiers = [
'Topic :: Database',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Version Control',
'Development Status :: 5 - Production/Stable'
],
install_requires = [
'psycopg2-binary>=2.7.3',
'PyYAML'
],
python_requires=">=3.6",
)