-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.09 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
from codecs import open as _open
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with _open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='jsondispatch',
version='0.1.0',
description='Dispatch commands with JSON HTTP requests',
long_description=LONG_DESCRIPTION,
author='Pierre Penninckx',
license='GPLv3',
packages=find_packages(),
url='https://github.com/ibizaman/jsondispatch',
download_url='https://github.com/ibizaman/jsondispatch/archive/0.1.0.tar.gz',
keywords=['json', 'aiohttp'],
install_requires=[
'aiohttp == 3.10.11',
'aiohttp_cors == 0.6.0',
'yarl == 0.18.0',
'PyYAML == 5.4',
],
extras_require={
'dev': [
'pylint == 1.7.2',
],
'test': [
'coverage == 4.4.1',
'pytest == 3.1.3',
'pytest-cov == 2.5.1',
],
}
)