-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 726 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__pckg__ = "aioflow"
__dpckg__ = __pckg__.replace("-", "_")
__version__ = "0.0.9"
setup(
name=__pckg__,
version=__version__,
description="A simple workflow implementation using asyncio.",
author="Andrey Lemets",
author_email="a.a.lemets@gmail.com",
packages=find_packages(),
include_package_data=True,
license="MIT License",
install_requires=[
"pyyaml==3.13",
],
extras_require={
"tests": [
"pytest==4.2.0",
"pytest-cov==2.6.1",
"pytest-asyncio==0.10.0",
],
"aioredis": [
"aioredis==1.2.0",
],
}
)