-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
64 lines (57 loc) · 1.88 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015-2018 Guillaume Kulakowski <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#
from setuptools import setup, find_packages
from seedboxsync.version import get_version
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='seedboxsync',
version=get_version(),
python_requires='>=3.9',
description='Script for sync operations between your NAS and your seedbox',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Guillaume Kulakowski',
author_email='[email protected]',
url='https://llaumgui.github.io/seedboxsync/',
license='GPL-2.0',
project_urls={
'Documentation': 'https://llaumgui.github.io/seedboxsync/',
'Bug Reports': 'https://github.com/llaumgui/seedboxsync/issues',
'Source': 'https://github.com/llaumgui/seedboxsync/'
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: Internet',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX'
],
keywords='seedbox nas sync sftp',
packages=find_packages(exclude=['ez_setup', 'tests*']),
data_files=[('config', ['config/seedboxsync.yml.example'])],
include_package_data=True,
entry_points="""
[console_scripts]
seedboxsync = seedboxsync.main:main
""",
install_requires=[
'cement==3.0.12',
'pyyaml',
'colorlog',
'paramiko>=2.12',
'bcoding>=1.5',
'tabulate',
'peewee'
],
)