-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 881 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
import os
from setuptools import find_packages, setup
#
# with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
# README = readme.read()
#
# # allow setup.py to be run from any path
# os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-s3_backup_tracker",
version="0.0.1",
author="Travis Bock",
author_email="[email protected]",
license="MIT",
description="Move and track DB backups to offsite locations",
url="https://github.com/Innovate-Inc/django-s3-backup-tracker",
packages=['s3_backup_tracker', 's3_backup_tracker.migrations', 's3_backup_tracker.management.commands'],
install_requires=['django-storages'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
include_package_data=True
)