Skip to main content

No project description provided

Project description

my_python_library

щоб створити власну бібліотеку

  1. встановити : % pip install wheel % pip install setuptools % pip install twine

  2. створити папку, яку буде імпортуватись

  3. обовʼязковий файл setup.py ''' from setuptools import find_packages, setup

setup( name='mypythonlib', packages=find_packages(include=['mypythonlib']), version='0.1.0', description='My first Python library', author='Me', install_requires=[], setup_requires=['pytest-runner'], tests_require=['pytest==4.4.1'], test_suite='tests', ) ''' 4. python setup.py bdist_wheel

Install library - pip install /path/to/wheelfile.whl

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

melnykmath-0.1.0.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

melnykmath-0.1.0-py3-none-any.whl (2.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page