Creating and uploading a Python package to the PyPi: Part 1 Basics

Creating and uploading a Python package to the PyPi: Part 1 Basics

Author
winstonmhango23
Published
June 29, 2024
Reading Time
5 min read
Views
430
my_package/
├── my_package/
│   ├── __init__.py
│   ├── module1.py
│   ├── module2.py
├── tests/
│   ├── __init__.py
│   ├── test_module1.py
│   ├── test_module2.py
├── LICENSE
├── README.md
├── setup.py
├── requirements.txt
bank_creator/
├── bank_creator/
│   ├── __init__.py
│   ├── bank.py
│   ├── branch.py
│   ├── account.py
│   ├── loan.py
│   ├── utilities.py
│   ├── decorators.py
│   ├── database.py
├── tests/
│   ├── __init__.py
│   ├── test_bank.py
│   ├── test_branch.py
│   ├── test_account.py
│   ├── test_loan.py
│   ├── test_utilities.py
├── README.md
├── LICENSE
├── setup.py
# setup.py
from setuptools import setup, find_packages

setup(
    name='bank_creator',
    version='0.1.0',
    packages=find_packages(),
    install_requires=[],
    entry_points={
        'console_scripts': [
            'bank_creator=bank_creator.cli:main',
        ],
    },
    author='Your Name',
    author_email='your.email@example.com',
    description='A package for creating and managing bank accounts',
    long_description=open('README.md').read(),
    long_description_content_type='text/markdown',
    url='https://github.com/yourusername/bank_creator',
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
    ],
    python_requires='>=3.6',
)

Share this article

Stay Updated

Subscribe to our newsletter for new course alerts, learning tips, and exclusive offers.

We respect your privacy. Unsubscribe at any time.

Discussion (0)

Be the first to comment on this article

winstonmhango23

Technical Writer & Developer

Table of Contents

Stay Updated! Join our waitlist to get notified about new courses.

© 2025 .