{"id":19475280,"url":"https://github.com/yunisdev/pypi-starter","last_synced_at":"2026-05-13T08:08:20.373Z","repository":{"id":52546422,"uuid":"320269725","full_name":"yunisdev/pypi-starter","owner":"yunisdev","description":"Starter template for PYPI packages.","archived":false,"fork":false,"pushed_at":"2021-05-02T13:33:52.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-25T15:51:07.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yunisdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-10T12:44:44.000Z","updated_at":"2021-05-02T13:33:55.000Z","dependencies_parsed_at":"2022-08-27T19:50:16.373Z","dependency_job_id":null,"html_url":"https://github.com/yunisdev/pypi-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/yunisdev/pypi-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunisdev%2Fpypi-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunisdev%2Fpypi-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunisdev%2Fpypi-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunisdev%2Fpypi-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yunisdev","download_url":"https://codeload.github.com/yunisdev/pypi-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunisdev%2Fpypi-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32973362,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T06:31:55.726Z","status":"ssl_error","status_checked_at":"2026-05-13T06:31:51.336Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T19:31:29.373Z","updated_at":"2026-05-13T08:08:20.354Z","avatar_url":"https://github.com/yunisdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg)](https://opensource.org/licenses/MIT) [![PSM](https://img.shields.io/badge/dependency-myp-blue)](https://github.com/yunisdev/myp)\n\n# PYPI starter template\n\nThis repo is starter template for [PYPI](https://pypi.org/) packages.\n\n\n\n## Installation \n\nThere is two ways to use this template:\n- Generate with \"Use with template\" button\n- Clone project and use it\n\n### Generate with \"Use with template\" button\n\nYou can create your own repo from template by clicking green \"Use this template\" button on template repo page:\n\n![App Screenshot](https://raw.githubusercontent.com/yunisdev/pypi-starter/main/assets/use_template_button.png)\n\n### Clone project and use it\n\nClone repo from github to folder with your project name and delete `.git`, `assets` folders.\n\n```bash \n\u003e git clone https://github.com/yunisdev/pypi-starter.git\n\u003e cd pypi-starter\n```\n\nAfter, you can customize all the things with your needs. Example, you need to change folder name.\n\nDon't forget to delete useless folders:\n\n``` bash\n\u003e rm -rf .git\n\u003e rm -rf assets\n```\n\n`PYPI starter template` uses `MYP` for better user experience.\n`MYP` is used for adding your credentials to setup.py and adding some other functionalities to your project while you are developing your project.\nYou just need to install `myp` and dependencies:\n``` bash\n\u003e pip install --upgrade myp\n\u003e myp get:deps --dev\n```\n\nYou can get more information about `MYP` by clicking [this link](https://github.com/yunisdev/myp).\n\n**Note**: Do not forget to install requirements. Otherwise, nothing will work as expected.\n## Deploy package\n\nRun following command to deploy your project to `PYPI`:\n\n```bash\n\u003e myp deploy\n```\n\nThis command will build your project and deploy it to [pypi.org](https://pypi.org/)\n\n`setup.py` will use version number from `myp.json` file.\n\nTo update project version, run following command and enter version number:\n\n```bash\n\u003e myp set version\n```\n\n## Environment Variables\n\nYou can also use environment variables with the help of `snakenv` and `myp`.\n\nWhen you run `myp deploy` or any other `myp` script, you can use environment variables from `.env` files.\n\nIf you want to use other `.env` files like `dev`, `prod`, `test`, you need to run:\n\n```bash\n\u003e myp set environment\n```\n\nEnter name of environment you want and create file with name of `[ENV_NAME].env`.\n\nFor example, if you set `env` to `dev`, you need to create `dev.env` file.\n\n**Note**: You will not be able to use environment variables when running your script outside `myp`.\n\nYou can disable environment variable usage by running:\n\n```bash\n\u003e myp set use_environment -v \"False\"\n```\n\nAnd activate by running:\n\n```bash\n\u003e myp set use_environment -v \"True\"\n```\n## License\n\n[MIT](https://github.com/yunisdev/pypi-starter/blob/main/LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunisdev%2Fpypi-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyunisdev%2Fpypi-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunisdev%2Fpypi-starter/lists"}