-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·46 lines (44 loc) · 1.11 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
DEFINE_VERSION = '0.0.46'
from setuptools import setup
requireList = [
'lz4==3.1.3',
'ujson==1.35',
'uvloop==0.17.0',
'uvicorn==0.18.0',
'aiohttp==3.8.4',
'requests==2.30.0',
#'PyMySQL==0.10.1',
#'DBUtils==1.3',
#'dataclasses-json==0.5.13',
]
setup(
name='sunyata',
version=DEFINE_VERSION,
description='Light, simple, asynchronous RPC framework for Python',
author='tank',
license='MIT',
platforms="any",
install_requires=requireList,
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='sunyata',
packages=[
'sunyata',
'sunyata/rpc',
'sunyata/algorithm',
'sunyata/cli',
'sunyata/http'
],
include_package_data=True,
entry_points = {
'console_scripts' : [
'sunyata=sunyata.cli.entry:main'
]
}
)