Самое главное - правильно подготовить setup.py
. Тогда:
setup.py sdist bdist_wheel
для создания архивов рассылки в dist/
папку
twine upload dist/*
для загрузки архивов в PyPi (с вашим именем пользователя и паролем PyPi)
Вот пример setup.py
:
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
setup_args = dict(
name='elastictools',
version='0.1.2',
description='Useful tools to work with Elastic stack in Python',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
license='MIT',
packages=find_packages(),
author='Thuc Nguyen',
author_email='gthuc.nguyen@gmail.com',
keywords=['Elastic', 'ElasticSearch', 'Elastic Stack', 'Python 3', 'Elastic 6'],
url='https://github.com/ncthuc/elastictools',
download_url='https://pypi.org/project/elastictools/'
)
install_requires = [
'elasticsearch>=6.0.0,<7.0.0',
'jinja2'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)
Более подробную информацию вы можете найти здесь: https://medium.com/@thucnc/how-to-publish-your-own-python-package-to-pypi-4318868210f9