-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 864 Bytes
/
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
import os
from setuptools import find_packages, setup
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
with open(path) as f:
return f.read()
setup(
name='luizalabs-asyncio-toolkit',
version='0.2.4',
description=(
'The LuizaLabs set of tools '
'to ease asyncio development'
),
long_description=read('README.rst'),
author='Luizalabs',
author_email='[email protected]',
url='https://github.com/luizalabs/asyncio-toolkit',
keywords='asyncio tools utils circuit breaker',
install_requires=[],
packages=find_packages(exclude=[
'tests*'
]),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
]
)