-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 698 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='http_backuper',
version='0.1.7',
url='https://github.com/djbios/http_backuper',
author='djbios',
author_email='dorandval@gmail.com',
description='A simple backup solution',
packages=find_packages(),
install_requires=[
'pydantic<2', 'requests', 'schedule', 'docker', 'healthchecks_io', 'PyYAML',
],
entry_points={
'console_scripts': [
'http_backuper=http_backuper.backuper:main',
'backuper=http_backuper.backuper:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)