-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.31 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
39
40
41
42
43
44
45
46
#!/usr/bin/env python3.6
# coding=utf-8
from setuptools import setup
from radical.meta import VERSION
setup(
name='radical-rpc',
version=VERSION,
description='Multi-transport RPC with asyncio & Django support.',
long_description=open('README.rst', 'r').read(),
author="Andrew Dunai",
author_email='[email protected]',
url='https://github.com/and3rson/radical',
license='GPLv3',
packages=[
'radical',
'radical.transports',
'radical.management',
'radical.management.commands',
'radical.serialization',
'radical.contrib',
'radical.contrib.django',
],
include_package_data=True,
install_requires=['aioredis'],
zip_safe=False,
entry_points={
'console_scripts': [
'radical=radical.worker:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: AsyncIO',
'Topic :: Software Development :: Libraries',
],
keywords='rpc,python2,python3,python,asyncio,aio,redis,django',
)