-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.08 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="backup_cloud",
version="0.3",
author="Michael De La Rue",
author_email="michael-paddle@fake.github.com",
description="Backup your entire (AWS) cloud - base part",
long_description=long_description,
url="https://github.com/backup-cloud/backup-base",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"start-backup-context = backup_cloud.shell_start:main",
"backup-cloud-upload = backup_cloud.shell_start:upload_main",
]
},
# python gpgme (the official library distributed by the GPG team)
# has to be installed by the operating system so we don't include
# it here so that PIP does not attempt to install it!
install_requires=["boto3"],
)