-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 918 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
from setuptools import setup, find_packages
readme = open('README.rst').read() + open('CHANGELOG.rst').read()
setup(
name='aiorq',
version='0.2.dev1',
description='asyncio client and server for RQ',
long_description=readme,
url='https://github.com/proofit404/aiorq',
license='LGPL-3',
author='Artem Malyshev',
author_email='proofit404@gmail.com',
packages=find_packages(),
install_requires=['rq>=0.5', 'aioredis>=0.2', 'click>=3.0'],
entry_points={
'console_scripts': [
'aiorq = aiorq.cli:cli',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', # noqa
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
])