自己的python包發布經驗

來源:互聯網
上載者:User
主要參考: https://python-packaging.readthedocs.io/en/latest/minimal.html
以下經驗是建立在上述參考檔案之上的。

有幾點經驗: 1, 在 https://pypi.python.org/pypi 註冊一個帳號, 我的是seefeel. (Server response (410): Project pre-registration is no longer required or supported, so continue directly to uploading files. ) 以上報錯是說,不需要用 $python setup.py register
2, 建立檔案  $ vim ~/.pypirc   (Upload failed (403): Invalid or non-existent authentication information.) [distutils] index-servers =     pypi
[pypi] repository: https://upload.pypi.org/legacy/ username: seefeel  
3,如果需要打包除了py之外的檔案,在setup.py中需要增加 package_data 參數 from setuptools import setup
setup(name='seefeel',       username='seefeel'       version='0.1',       description='utils for text preprocess',       url='https://github.com/LeslieFire/seefeel',       author='seefeel',       author_email='249893977@qq.com',       license='MIT',       packages=['seefeel'],       package_dir={'seefeel': 'seefeel'},       package_data={'seefeel':['*.*', 'seefeel/*']},       zip_safe=False)
4,如果需要讀取package內的文字檔,比如stop_words.txt,有一個方法比較好用 import os
get_module_res = lambda *res: open(os.path.normpath(os.path.join(                             os.getcwd(), os.path.dirname(__file__), *res)), 'r')
STOP_WORDS_PATH = 'stop_words.txt'
def stop_words():     words = [ line.strip() for line in get_module_res(STOP_WORDS_PATH)]     return set(words)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.