-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 744 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 744 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
25
26
27
#!/usr/bin/env python
import os
import os.path
import setuptools
setuptools.setup(
name='resticpy',
long_description=open(
os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md')).read(),
long_description_content_type="text/markdown",
version=os.environ.get('PACKAGE_VERSION', '0.0.0'),
description='Restic backup Python wrapper',
project_urls={
"repository": "https://github.com/mtlynch/resticpy",
},
author='Michael Lynch',
author_email='michael@mtlynch.io',
license="MIT",
keywords="backup",
url='https://github.com/mtlynch/resticpy.git',
packages=['restic', 'restic.internal'],
install_requires=[],
python_requires='>=3.7',
)