-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
41 lines (38 loc) · 1.21 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
with open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='saucenao_api',
version='2.4.0',
author='nomnoms12',
author_email='[email protected]',
description='Wrapper for SauceNAO JSON API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nomnoms12/saucenao_api/',
packages=['saucenao_api'],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>= 3.6',
install_requires=[
'requests ~= 2.23.0',
'aiohttp ~= 3.7.4'
],
extras_require={
'test': [
'responses ~= 0.10.14',
'aioresponses ~= 0.7.2',
'pytest ~= 5.4.2',
'pytest-cov ~= 2.8.1',
],
},
project_urls={
'Bug Reports': 'https://github.com/nomnoms12/saucenao_api/issues/',
'Source': 'https://github.com/nomnoms12/saucenao_api/',
},
)