-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.05 KB
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
from distutils.core import setup
from setuptools import find_packages
setup(name='aiobbox',
version='0.8.5',
description='multi-lang, highly available rpc framework',
author='Zeng Ke',
author_email='zk@bixin.com',
packages=find_packages(),
scripts=['bin/bbox.py', 'bin/bbox-gencert'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: MIT',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX',
'Topic :: Micro-Services',
],
install_requires=[
'dateutils',
'aiohttp',
'aiochannel',
'websockets',
'aio_etcd',
'netifaces',
'aioredis',
'etcd3-py',
'sentry-sdk >= 1.3.1',
],
python_requires='>=3.8',
)