想将自己写的python3 代码部署到另外一台VPS上,自己最常用的方式就是用`scp`复制了,但是总是感觉这样很繁琐也不优雅。你看别的项目用pip install安装多好呀。  (图源 :[pixabay](https://pixabay.com/)) 于是去学了一下怎么打包,怎么弄pip,发现网上的文章太多,并且很多都已经过时了,最后参考[Packaging Python Projects](https://packaging.python.org/tutorials/packaging-projects/),大致搞明白了怎么做,在这记录一下。 # 打包操作 打包操作就是把python项目放到一个安装包/分发包里,这样无论是传输还是安装使用时,都只需和一个文件打交道就好了,不必面对一大堆目录。 #### 安装支持工具 在进行打包之前,首先需要安装相应的支持工具,主要是`setuptools`与`wheel`。 >`python3 -m pip install --user --upgrade setuptools wheel` 我的系统中这两个已经存在了。 #### setup.py 之后就是弄好项目的目录结构以及创建setup.py。 项目的目录结构大致这样: > setup.py的内容以及各项内容的意义请参考这里:https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py 除了setup.py外,弄个README.md以及LICENSE会让项目看起来更加正规与友好。当然了,像我这种自己用的小项目,其实没有这俩文件也没啥。 #### 生成分发包 做好上述工作以后,就可以生成分发包了。 生成分发包的命令如下: >`python3 setup.py sdist bdist_wheel` 可以用如下命令查看setup.py后边具体命令的解释: >`python3 setup.py --help-commands` 返回信息如下: > 所以我们知道`sdist`是创建源码分发包,而`bdist_wheel`是创建wheel格式分发包。 执行完成后,我们就会在dist目录下发现与`sdist`和`bdist_wheel`相对应的两个文件,这两个文件就可以用于安装/分发等操作啦。 # 发布项目 其实项目打包好,并且能安装,对我而言已经足够了,不过还是探索了一下发布项目的流程。 首先强调一点,仅仅是测试的话,应该使用[Test PyPI](https://test.pypi.org/)。以下内容以pypi为例,大部分同样适用于TestPyPI。 #### 创建API token 在上传项目之前,先创建API token。 访问如下链接: >https://pypi.org/manage/account/ 点击***`Add API token`*** > 起个名字: > 查看生成的token,主要保存好: > #### 使用Token pypi 上给出如下提示: >To use this API token: >* Set your username to __token__ >* Set your password to the token value, including the pypi- prefix 所以我们编辑`$HOME/.pypirc`文件,加入如下内容: ``` [pypi] username = __token__ password = pypi-xxxxxxxx ``` #### 上传项目 在上传项目之前,需要安装twine >`python3 -m pip install --user --upgrade twine` 关于[twine的介绍](https://packaging.python.org/key_projects/#twine)(主要解决加密上传的问题): >Twine is the primary tool developers use to upload packages to the Python Package Index or other Python package indexes. It is a command-line program that passes program files and metadata to a web API. Developers use it because it’s the official PyPI upload tool, it’s fast and secure, it’s maintained, and it reliably works. 然后使用如下指令就可以上传/发布项目啦: >`python3 -m twine upload --repository pypi dist/*` # 其它补充 上传项目可以上传源码版或者wheel版(或者其它版本),都可以用pip安装的,推荐wheel版。 setup.py文件还是挺复杂的,我现在还有点晕头转向,弄好还真不容易呢。关于setup.py更详细内容,可以参考:[Writing the Setup Script](https://docs.python.org/3.7/distutils/setupscript.html) # 参考链接 * [Python Packaging User Guide](https://packaging.python.org/) * [Packaging Python Projects](https://packaging.python.org/tutorials/packaging-projects/) * [Writing the Setup Script](https://docs.python.org/3.7/distutils/setupscript.html) * [Building and Distributing Packages with Setuptools](https://setuptools.readthedocs.io/en/latest/setuptools.html) * https://packaging.python.org/key_projects/#twine * https://test.pypi.org/ * https://packaging.python.org/guides/using-testpypi/
author | oflyhigh |
---|---|
permlink | 2rjxys-python |
category | hive-105017 |
json_metadata | {"tags":["cn","cutehive","cn-programming","python","setup","pypi"],"image":["https://cdn.pixabay.com/photo/2017/06/02/14/38/package-2366468_960_720.jpg","https://images.hive.blog/DQmQRRP8ZYGJcC2oMk32HkhAHYh1kBvT4VupsLG2ZFqQus6/image.png","https://images.hive.blog/DQmfHyJpYagcAQx4CZBVjcSsi7FfT9bBQQcGz4BEfdd5UXN/image.png","https://images.hive.blog/DQmeaQdczMN4guVqRGmuS4Lz4oyhcSDgYF3dWf8ANGzdoWn/image.png","https://images.hive.blog/DQmSLAdxshu6gmN4YBeQSX9ad9SQKoHRzy597vgvKSEbgPj/image.png","https://images.hive.blog/DQmRp29UAC4ncr3eRcmRqEEMRBfJhM2MRKaM2fHpiQXXVdc/image.png"],"links":["https://pixabay.com/","https://packaging.python.org/tutorials/packaging-projects/","https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py","https://test.pypi.org/","https://pypi.org/manage/account/","https://packaging.python.org/key_projects/#twine","https://docs.python.org/3.7/distutils/setupscript.html","https://packaging.python.org/","https://setuptools.readthedocs.io/en/latest/setuptools.html","https://packaging.python.org/guides/using-testpypi/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2020-05-15 04:03:54 |
last_update | 2020-05-15 04:03:54 |
depth | 0 |
children | 1 |
last_payout | 2020-05-22 04:03:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 32.042 HBD |
curator_payout_value | 29.068 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,365 |
author_reputation | 6,267,702,049,494,213 |
root_title | 每天进步一点点:Python项目的打包与发布 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,379,312 |
net_rshares | 101,497,081,960,316 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 26,472,169,872,136 | 100% | ||
adm | 0 | 29,805,304,710,794 | 100% | ||
chitty | 0 | 392,555,956,213 | 75% | ||
onealfa | 0 | 146,546,691,450 | 4.19% | ||
kingscrown | 0 | 540,327,158,343 | 8% | ||
ezzy | 0 | 3,704,566,323,630 | 50% | ||
fundurian | 0 | 141,620,215,912 | 94% | ||
deanliu | 0 | 1,943,173,774,588 | 100% | ||
joythewanderer | 0 | 352,596,408,994 | 50% | ||
lemooljiang | 0 | 585,544,253,179 | 88% | ||
ace108 | 0 | 567,196,644,579 | 25% | ||
laoyao | 0 | 47,006,306,298 | 100% | ||
somebody | 0 | 10,855,085,372 | 100% | ||
skysunny | 0 | 132,171,886 | 88% | ||
midnightoil | 0 | 164,941,745,405 | 100% | ||
xiaohui | 0 | 933,310,931,437 | 100% | ||
d3nv3r | 0 | 1,053,804,439 | 44% | ||
oflyhigh | 0 | 4,672,792,168,955 | 100% | ||
bidnat | 0 | 756,916,599 | 7.5% | ||
kiddarko | 0 | 5,055,102,429 | 4% | ||
yulan | 0 | 16,734,987,097 | 100% | ||
rivalhw | 0 | 1,597,289,584,971 | 100% | ||
nextgen622 | 0 | 1,572,314,318,237 | 100% | ||
helene | 0 | 1,227,850,032,443 | 100% | ||
ffcrossculture | 0 | 361,150,702,178 | 100% | ||
ethansteem | 0 | 396,814,909,168 | 100% | ||
sweetsssj | 0 | 20,440,924,246,155 | 50% | ||
netaterra | 0 | 361,838,369,424 | 16% | ||
dadview | 0 | 1,045,665,702 | 2.4% | ||
petrvl | 0 | 116,075,145,918 | 15% | ||
funnyman | 0 | 66,629,872,283 | 20% | ||
justyy | 0 | 32,562,683,298 | 4% | ||
jang | 0 | 210,434,467,423 | 100% | ||
lexikon082 | 0 | 1,230,994,399 | 100% | ||
dapeng | 0 | 36,848,221,117 | 100% | ||
adventureevryday | 0 | 3,602,046,645 | 8% | ||
devilwsy | 0 | 3,425,181,860 | 100% | ||
janiceting | 0 | 3,439,423,684 | 100% | ||
timool | 0 | 973,715,809 | 88% | ||
lucknie | 0 | 17,859,880,016 | 88% | ||
dumping | 0 | 1,863,366,307 | 88% | ||
jinghua | 0 | 0 | 88% | ||
blackbunny | 0 | 73,789,084,423 | 100% | ||
elizacheng | 0 | 16,621,096,635 | 9% | ||
bxt | 0 | 242,221,780,789 | 100% | ||
lingfei | 0 | 82,548,314,021 | 100% | ||
justinashby | 0 | 56,913,586,831 | 100% | ||
yyyy | 0 | 463,742,894 | 100% | ||
buzzbeergeek | 0 | 2,576,319,655 | 8% | ||
detlev | 0 | 18,535,246,481 | 1.5% | ||
teachblogger | 0 | 2,110,051,809 | 50% | ||
htliao | 0 | 42,197,916,816 | 20% | ||
curly-q | 0 | 2,280,351,503 | 100% | ||
exec | 0 | 248,080,897,704 | 100% | ||
eval | 0 | 858,067,943 | 100% | ||
mdosev | 0 | 1,203,058,926 | 4% | ||
belahejna | 0 | 19,668,624,162 | 15% | ||
ew-and-patterns | 0 | 257,962,347,865 | 10% | ||
benedict08 | 0 | 168,327,467,111 | 50% | ||
susanli3769 | 0 | 135,165,183,930 | 100% | ||
otom | 0 | 17,674,784,202 | 20% | ||
travelgirl | 0 | 87,239,819,298 | 40% | ||
catwomanteresa | 0 | 136,349,629,235 | 50% | ||
oldman28 | 0 | 30,527,254,929 | 48% | ||
liangfengyouren | 0 | 3,400,206,209 | 50% | ||
stevenmosoes | 0 | 2,595,411,490 | 50% | ||
aafeng | 0 | 212,990,725,399 | 100% | ||
cn-reader | 0 | 13,182,073,735 | 50% | ||
tvb | 0 | 21,874,844,658 | 30% | ||
skenan | 0 | 6,399,600,807 | 50% | ||
kimzwarch | 0 | 7,653,837,092 | 4% | ||
bboyady | 0 | 653,086,007 | 2% | ||
chinchilla | 0 | 223,446,059,209 | 100% | ||
chenlocus | 0 | 7,056,274,067 | 100% | ||
davidke20 | 0 | 7,277,751,207 | 4% | ||
xiaoshancun | 0 | 3,802,827,624 | 100% | ||
victory622 | 0 | 165,508,387,366 | 100% | ||
metten | 0 | 9,783,080,574 | 88% | ||
cn-book | 0 | 1,097,247,202 | 88% | ||
red-rose | 0 | 16,931,460,986 | 100% | ||
awesome-gadgets | 0 | 1,839,595,768 | 100% | ||
cn-movie | 0 | 114,801,654 | 88% | ||
etherpunk | 0 | 1,197,576,402 | 25% | ||
itchyfeetdonica | 0 | 99,119,960,112 | 50% | ||
vivia | 0 | 3,139,198,143 | 88% | ||
girolamomarotta | 0 | 33,508,491,197 | 50% | ||
korinkrafting | 0 | 651,837,826 | 22.5% | ||
mmmmkkkk311 | 0 | -1,631,078,963,419 | -25% | ||
yikloongye | 0 | 0 | 4% | ||
maiyude | 0 | 1,352,794,697 | 50% | ||
suhunter | 0 | 946,608,941 | 50% | ||
mermaidvampire | 0 | 16,125,351,401 | 45% | ||
patricklancaster | 0 | 639,173,722 | 4% | ||
abandi | 0 | 776,042,474 | 100% | ||
xiaoli | 0 | 296,037,083 | 88% | ||
jimcustodio | 0 | 1,590,222,816 | 50% | ||
yumisee | 0 | 3,374,512 | 4% | ||
joeliew | 0 | 3,554,575,936 | 100% | ||
best-strategy | 0 | 10,244,503,539 | 100% | ||
hkit98 | 0 | 0 | 4% | ||
elvinmas001 | 0 | 0 | 4% | ||
watersoo | 0 | 84,751,709 | 4% | ||
vamos-amigo | 0 | 111,369,775 | 4% | ||
upfundme | 0 | 20,185,040,571 | 15% | ||
yjcps | 0 | 3,690,558,467 | 100% | ||
sudefteri | 0 | 17,792,719,343 | 100% | ||
happy-soul | 0 | 77,020,363,342 | 10% | ||
iipoh06 | 0 | 0 | 4% | ||
annabellenoelle | 0 | 0 | 4% | ||
yethui | 0 | 0 | 4% | ||
riczlook | 0 | 0 | 4% | ||
ethanlee | 0 | 5,605,341,646 | 100% | ||
andrewnoel | 0 | 0 | 4% | ||
fishbb | 0 | 766,646,142 | 25% | ||
fredo77200 | 0 | 3,665,154,696 | 100% | ||
mariuszkarowski | 0 | -152,720,272,809 | -25% | ||
ryenneleow | 0 | 4,864,507,555 | 90% | ||
therising | 0 | 3,189,081,236,267 | 20% | ||
competeapp | 0 | 616,763,129,092 | 100% | ||
hmayak | 0 | 23,118,216,444 | 100% | ||
cn-malaysia | 0 | 1,662,004,524 | 4% | ||
qam2112 | 0 | 16,702,749,849 | 100% | ||
kahvesizlik | 0 | 1,243,646,083 | 100% | ||
moneybaby | 0 | 805,948,274 | 2.5% | ||
abcallen | 0 | 15,903,438,317 | 80% | ||
rachman-jr25 | 0 | 1,354,768,020 | 100% | ||
rufruf | 0 | 845,332,050 | 100% | ||
yestermorrow | 0 | 8,709,875,738 | 31% | ||
blues-wclouds | 0 | 1,752,244,175 | 100% | ||
bitcoingodperson | 0 | 804,830,172,052 | 100% | ||
julian2013 | 0 | 9,234,658,962 | 5% | ||
voxmortis | 0 | 53,616,215,587 | 20% | ||
malricinferno | 0 | 1,396,910,714 | 100% | ||
zintarmortalis | 0 | 1,709,464,656 | 100% | ||
natur-pur | 0 | 869,177,292 | 100% | ||
steemitcuration | 0 | 22,855,411,868 | 100% | ||
jamzmie | 0 | 1,099,973,128 | 15% | ||
sasaadrian | 0 | 2,190,821,365 | 20% | ||
florino | 0 | 807,079,350 | 15% | ||
pollygonewild | 0 | 0 | 4% | ||
foodblogresteem | 0 | 0 | 4% | ||
rakk3187 | 0 | 7,824,512,820 | 100% | ||
maajaanaa | 0 | 1,875,868,483 | 100% | ||
starrouge | 0 | 1,043,000,061 | 50% | ||
unit101 | 0 | 5,264,387,834 | 100% | ||
littlegurl747 | 0 | 8,355,048,826 | 100% | ||
rasalom | 0 | 15,038,673,743 | 100% | ||
zerofive | 0 | 900,671,094 | 50% | ||
hf20 | 0 | 433,675,462 | 100% | ||
bluesniper | 0 | 156,213,902,785 | 25% | ||
tagalong | 0 | 2,724,488,584 | 100% | ||
cnstm | 0 | 455,662,833,720 | 100% | ||
likuang007 | 0 | 34,149,846,650 | 100% | ||
ctime | 0 | -2,934,165,819,497 | -25% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
bobdavids | 0 | 0 | 4% | ||
chocolatelover | 0 | 4,000,334,788 | 40% | ||
hungryharish | 0 | 7,261,074,060 | 100% | ||
apix | 0 | 83,962,649,262 | 100% | ||
elektroyazilim | 0 | 624,223,843 | 60% | ||
kryptogames | 0 | 88,765,240,986 | 20% | ||
lovelemon | 0 | 35,675,416,454 | 100% | ||
steem-fund | 0 | 4,433,032,865 | 100% | ||
rj-photo | 0 | 1,386,529,509 | 100% | ||
scarletreaper | 0 | 17,730,908,310 | 50% | ||
izhmash | 0 | 1,346,320,347 | 100% | ||
sevensixtwo | 0 | 1,188,810,320 | 100% | ||
bastogne | 0 | 1,173,212,496 | 100% | ||
thirdarmy | 0 | 1,154,092,897 | 100% | ||
sm-silva | 0 | 22,067,492,897 | 100% | ||
plankton.token | 0 | 30,465,976,486 | 30% | ||
alabas | 0 | 0 | 100% | ||
voodooranger | 0 | 1,035,605,472 | 100% | ||
online-24-7 | 0 | 1,338,234,058 | 100% | ||
votebetting | 0 | 554,471,986,677 | 50% | ||
hyborian-strain | 0 | 1,853,099,304 | 30% | ||
ufm.pay | 0 | 71,456,067,977 | 11.25% | ||
mk-pal-token | 0 | -959,763,247 | -25% | ||
mk-sports-token | 0 | -1,690,268,993 | -25% | ||
mk-natrl-token | 0 | -944,990,043 | -25% | ||
mk-stem-token | 0 | -946,056,421 | -25% | ||
mk-gg-token | 0 | -946,095,917 | -25% | ||
mk-marlians-tkn | 0 | -959,839,116 | -25% | ||
mk-leo-token | 0 | -951,327,198 | -25% | ||
tagflagger | 0 | 0 | -25% | ||
mk-photo-token | 0 | -1,465,428,516 | -25% | ||
teresa.yaiyai | 0 | 8,142,979,703 | 100% | ||
freedomteam2019 | 0 | 2,743,612,838 | 25% | ||
pietpompies | 0 | 1,169,972,650 | 100% | ||
therealyme | 0 | 1,126,257,910 | 16% | ||
kryptoformator | 0 | 6,959,388,395 | 7.5% | ||
policewala | 0 | 12,851,411,051 | 8% | ||
steemjiang | 0 | 0 | 88% | ||
starnote | 0 | 212,876,760 | 88% | ||
spx | 0 | 158,126,921,144 | 100% | ||
simply2koool | 0 | 10,545,582,338 | 25% | ||
coin-doubler | 0 | 1,593,039,942 | 100% | ||
moochain.net | 0 | 214,559,836 | 88% | ||
lemool | 0 | 0 | 88% | ||
liebin | 0 | 0 | 88% | ||
moocer | 0 | 0 | 88% | ||
youngoole | 0 | 0 | 88% | ||
imooc | 0 | 0 | 88% | ||
abuse-signal | 0 | -9,793,755,055 | -25% | ||
chromebook | 0 | 813,581,675 | 80% | ||
lovequeen | 0 | 15,270,659,623 | 100% | ||
wikicoin | 0 | 0 | 88% | ||
starchain | 0 | 0 | 88% | ||
steemipfs | 0 | 0 | 88% | ||
hive-224466 | 0 | 0 | 88% | ||
sunsan | 0 | 553,605,089 | 7% | ||
littleksroad | 0 | 678,236,172 | 50% |
I have picked your post for my daily hive voting initiative, Keep it up and Hive On!!
author | chitty |
---|---|
permlink | re-2rjxys-python-20200519t000557 |
category | hive-105017 |
json_metadata | "" |
created | 2020-05-19 00:06:00 |
last_update | 2020-05-19 00:06:00 |
depth | 1 |
children | 0 |
last_payout | 2020-05-26 00:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 86,901,300,608,582 |
root_title | 每天进步一点点:Python项目的打包与发布 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,455,864 |
net_rshares | 0 |