-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
65 lines (58 loc) · 2.28 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
# coding=utf-8
from setuptools import setup, find_packages
# with open("README.md", "r",encoding='utf8') as fh:
# long_description = fh.read()
setup(
name='auto_run_on_remote', #
version=0.4,
description=(
'auto run current python script on remote server'
),
# long_description=open('README.md', 'r',encoding='utf8').read(),
keywords=("auto_run_on_remote"),
long_description_content_type="text/markdown",
long_description=open('README.md', 'r', encoding='utf8').read(),
author='bfzs',
author_email='ydf0509@sohu.com',
maintainer='ydf',
maintainer_email='ydf0509@sohu.com',
license='BSD License',
# packages=['douban'], #
packages=find_packages(),
# packages=['function_scheduling_distributed_framework'], # 这样内层级文件夹的没有打包进去。
include_package_data=True,
platforms=["all"],
url='https://github.com/ydf0509/auto_run_on_remote',
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',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'nb_log',
'fabric2==2.6.0', #有的机器包rust错误, 这样做 curl https://sh.rustup.rs -sSf | sh
]
)
"""
官方 https://pypi.org/simple
清华 https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣 https://pypi.douban.com/simple/
阿里云 https://mirrors.aliyun.com/pypi/simple/
打包上传
python setup.py sdist upload -r pypi
# python setup.py bdist_wheel
python setup.py bdist_wheel & twine upload dist/auto_run_on_remote-11.7-py3-none-any.whl
python setup.py sdist & twine upload dist/auto_run_on_remote-0.4.tar.gz
最快的下载方式,上传立即可安装。阿里云源同步官网pypi间隔要等很久。
./pip install auto_run_on_remote==3.5 -i https://pypi.org/simple
最新版下载
./pip install auto_run_on_remote --upgrade -i https://pypi.org/simple
"""