-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 924 Bytes
/
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
import setuptools
import os
try:
with open('README.md') as file:
long_description = file.read()
except IOError:
# Handle file not found Exception.
long_description = 'A simplified way to transfer RDS Backups to S3'
setuptools.setup(
name="pyrdsbackup",
version="1.1.3",
author="Sparsha Dotel",
author_email="[email protected]",
description="Simplify RDS Backups to S3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/darmagedon/pyrds-backup.git",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
),
keywords='cli',
install_requires=(
'pyodbc==4.0.30'
),
)