-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.28 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.28 KB
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
import setuptools
# pylint: disable=all
setuptools.setup(
name='http-misc',
version='3.1.5',
author='Anton Gorinenko',
author_email='anton.gorinenko@gmail.com',
description='Утилитарный пакет межсервисного взаимодействия по протоколу HTTP',
long_description='',
keywords='python, utils, http',
long_description_content_type='text/markdown',
packages=setuptools.find_packages('.', exclude=['tests'], include=['http_misc*']),
classifiers=[
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
],
install_requires=[
'PyJWT'
],
extras_require={
'aiohttp': ['aiohttp'],
'httpx': ['httpx'],
'requests': ['requests'],
'all': ['aiohttp', 'httpx', 'requests'],
'test': [
'aiohttp',
'httpx',
'requests',
'pytest',
'python-dotenv',
'envparse',
'pytest-asyncio',
'pytest-mock',
'pytest-env',
'freezegun'
]
},
python_requires='>=3.10',
)