forked from pengutronix/aiohttp-json-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·20 lines (19 loc) · 999 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
__name__ == '__main__' and setup(name='aiohttp-json-rpc',
version='0.9.1-slw1',
author='Florian Scherf',
url='https://github.com/pengutronix/aiohttp-json-rpc/',
author_email='f.scherf@pengutronix.de',
license='Apache 2.0',
install_requires=['aiohttp>=3,<3.1'],
python_requires='>=3.5',
packages=find_packages(),
zip_safe=False,
entry_points={
'pytest11': [
'aiohttp-json-rpc = aiohttp_json_rpc.pytest',
]
})