-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 759 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 759 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
28
from setuptools import setup, find_packages
from dotbak.core.version import get_version
VERSION = get_version()
f = open('README-pypi.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='dotbak',
version=VERSION,
description='Lazily Backup Files and Directories',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='BJ Dierkes',
author_email='derks@datafolklabs.com',
url='https://github.com/datafolklabs/dotbak',
license='BSD (three-clause)',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'dotbak': ['templates/*']},
include_package_data=True,
entry_points="""
[console_scripts]
dotbak = dotbak.main:main
""",
)