-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.37 KB
/
setup.py
File metadata and controls
55 lines (49 loc) · 1.37 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
48
49
50
51
52
53
54
55
from setuptools import find_packages, setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
extras = {
'gcs': [
'google==3.0.0',
'google-cloud-storage==2.7.0'
],
'aws': ['boto3']
}
setup(
name='postgres-backup',
version='0.3.3',
description='Automation of the creation of backups of Postgres databases',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Nil-Andreu/postgres-backup',
author='Nil Andreu',
author_email='nilandreug@email.com',
keywords=[
'backup',
'Postgres',
'SQL',
'database',
'PostgreSQL',
'Data Engineering'
],
license='MIT',
packages=find_packages(),
zip_safe=False,
install_requires=[
'sh',
'pydantic==1.10.4'
],
extras_require=extras,
classifiers=classifiers,
)