forked from ydf0509/funboost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
113 lines (106 loc) · 4.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='funboost', #
version='20.2',
description=(
'pip install funboost,python全功能分布式函数调度框架,。支持python所有类型的并发模式和一切知名消息队列中间件,python函数加速器,框架包罗万象,一统编程思维,兼容50% python业务场景,适用范围广。只需要一行代码即可分布式执行python一切函数,99%用过funboost的pythoner 感受是 方便 快速 强大,相见恨晚 '
),
# long_description=open('README.md', 'r',encoding='utf8').read(),
keywords=["funboost", "distributed-framework", "function-scheduling", "rabbitmq", "rocketmq", "kafka", "nsq", "redis", "disk",
"sqlachemy", "consume-confirm", "timing", "task-scheduling", "apscheduler", "pulsar", "mqtt", "kombu","的","celery","框架",'分布式调度'],
long_description_content_type="text/markdown",
long_description=open('README.md', 'r', encoding='utf8').read(),
author='bfzs',
author_email='[email protected]',
maintainer='ydf',
maintainer_email='[email protected]',
license='BSD License',
# packages=['douban'], #
packages=find_packages() + ['funboost.beggar_version_implementation','funboost.assist'], # 也可以写在 MANiFEST.in
# packages=['function_scheduling_distributed_framework'], # 这样内层级文件夹的没有打包进去。
include_package_data=True,
platforms=["all"],
url='https://github.com/ydf0509/funboost',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.6',
'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',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'eventlet==0.33.3',
'gevent==22.10.2',
'pymongo==4.0.2', # 3.5.1 -> 4.0.2
'AMQPStorm==2.7.1',
'rabbitpy==2.0.1',
'decorator==4.4.0',
# 'pysnooper==0.0.11',
'Flask',
'flask_bootstrap',
'flask_wtf',
'wtforms',
'flask_login',
'tomorrow3==1.1.0',
'persist-queue>=0.4.2',
'elasticsearch',
'kafka-python==2.0.2',
'requests',
'gnsq==1.0.1',
'psutil',
# 'sqlalchemy==1.3.10',
# 'sqlalchemy_utils==0.36.1', # 用户使用数据库作为消息队列时候,自行安装,不自动安装这个包。也可以使用kombu中间件的sqlalchemy模式来操作数据库或者peewee操作。
'peewee==3.15.1',
'apscheduler==3.7.0',
'pikav0',
'pikav1',
'redis2',
'redis3',
'redis',
'nb_log>=7.9',
'rocketmq',
'zmq',
'pyzmq',
'kombu', # 'kombu==4.6.11',
# 'confluent_kafka==1.7.0',
'paho-mqtt',
'setuptools_rust',
'fabric2==2.6.0', # 有的机器包rust错误, 这样做 curl https://sh.rustup.rs -sSf | sh
'nats-python',
'nb_filelock',
'aiohttp==3.8.3',
'pysnooper',
'deprecated',
'cryptography',
'auto_run_on_remote',
]
)
"""
官方 https://pypi.org/simple
清华 https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣 https://pypi.douban.com/simple/
阿里云 https://mirrors.aliyun.com/pypi/simple/
腾讯云 http://mirrors.tencentyun.com/pypi/simple/
打包上传
python setup.py sdist upload -r pypi
# python setup.py bdist_wheel
python setup.py bdist_wheel ; python -m twine upload dist/funboost-15.0-py3-none-any.whl
python setup.py bdist_wheel && python -m twine upload dist/funboost-20.2-py3-none-any.whl
python setup.py sdist & twine upload dist/funboost-10.9.tar.gz
最快的下载方式,上传立即可安装。阿里云源同步官网pypi间隔要等很久。
./pip install funboost==3.5 -i https://pypi.org/simple
最新版下载
./pip install funboost --upgrade -i https://pypi.org/simple
从git安装
pip install git+https://github.com/ydf0509/funboost.git
pip install git+https://gitee.com/bfzshen/funboost.git
"""