generated from bil0u/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.05 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
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
author='Ugo Popée',
author_email='ugo.popee@me.com',
name='nzbget-file-opener',
version='1.0.3',
url='http://github.com/bil0u/nzbget-file-opener',
description='nzbget-file-opener allows you to download *.nzb files with just a double click',
long_description=readme(),
long_description_content_type='text/markdown',
keywords='nzbget-file-opener nzbget extension',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Text Processing :: Linguistic',
],
license='MIT',
packages=[
'nzbget_file_opener'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'nzbget-file-opener=nzbget_file_opener.app:main'
],
},
python_requires='>=3.6',
install_requires=[
'pytest',
'psutil'
]
)