Version Control System (VCS)

Nowadays most developers use some kind of a version control system for their project, usually with a publicly hosted version with read access to everyone. The most commonly used Version Control System is Git. The most popular public Git hosting services are GitHub, GitLab, and BitBucket.

In order to make it easier to the users of the project, many people include a link to the version control system of the project in the meta-data of the project. In most cases they use the home_page field. In other cases the link is embedded in the description field in the JSON file.

Our database indicates that about 32% of the packages have no VCS, however we have to take in account that our process only checks the home_page field (not the description) and until June 12, 2020 the system only recognized GitHub URLs. Since then it also recognized GitLab and BitBucket URLs.

In order to make it easier for every to be able to contribute to their favorite project we would like to encourage more project owners to include the link to their public VCS in their meta-data. Ideally there would be a specialized field for this (instead of re-using the home_page field), but for now the home_page will do it.

How can you help fixing the situation?

Check the list of packages where we have not found a VCS. First make sure the package indeed does not have a link to its VCS. Our code might have bugs or the package might have been indexed before some of our latest improvements to our indexing.

If there really is no VCS then finding and adding the link to it is probably not an easy task. One thing that can be done is to see if the same author has multiple packages, maybe some of the other packages have VCS links. Then the VCS of this package might be in a similar place. In addition on could just manually search the major Git hosting services.

setup.py

Here is the section of the setup.py file:
            url='https://github.com/user/project',
        

pyproject.toml

        "project_urls": {
        "repository": "https://github.com/dqnnyr/cmdify.git"
        },
        
Elapsed time: 0.00029s