Skip to content

illustrating how to make the project that people can download through the pip on the github

Notifications You must be signed in to change notification settings

rupert-kim/how-to-support-pip-download

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

What is this project?

  • This is the example for people who want to support pip download like a library in the project they made.

How users import this project

  • Just like this
pip install git+https://github.com/yoonsubKim/how-to-support-pip-download.git

How to support pip download?

  • It is essential to have setup.py and write some features in the file.
  • Below this is the example of setup.py

Warning Point

  • It can be there is the same project name, so decide carefully.
  • When user who install your project through the pip, there are just designated directories on the packages attributes in setup.py. Therefore, check the directories that you want to release.
from setuptools import setup


setup(
    name='project_name',
    version='0.0.1',
    description='illustrating how to make the project that people can download through the pip on the github',
    url='https://github.com/yoonsubKim/how-to-support-pip-download',
    author='rupert kim',
    author_email='my@rupert.in',
    license='MIT',
    install_requires=[
        'requests'
    ],
    packages=['packages']
)

References

About

illustrating how to make the project that people can download through the pip on the github

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages