-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
38 lines (35 loc) · 1.4 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
#! /usr/bin/env python
from setuptools import setup
VERSION = '1.10.2'
def main():
setup(name='par2deep',
version=VERSION,
description="Produce, verify and repair par2 files recursively. ",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Topic :: Utilities',
'Operating System :: OS Independent'
],
keywords='par2 file integrity',
author='Brent Huisman',
author_email='brent@huisman.pl',
url='https://github.com/brenthuisman/par2deep',
license='LGPL',
include_package_data=True,
zip_safe=False,
install_requires=['tqdm','configargparse','send2trash','PyQt5','par2cmdline-turbo'],
packages=['par2deep'],
entry_points={
"console_scripts": ['par2deep = par2deep.gui_qt:main', 'par2deep-cli = par2deep.cli:main'],
}
)
if __name__ == '__main__':
main()