auto-pypi-uploader


Nameauto-pypi-uploader JSON
Version 1.1.1.3 PyPI version JSON
download
home_pagehttps://github.com/Huckdirks/auto-pypi-exporter
SummaryA program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi.
upload_time2023-04-11 12:27:42
maintainer
docs_urlNone
authorHuck Dirksmeier
requires_python>=3.0
licenseMIT
keywords pypi pip setup setup.py automation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Auto Pip Exporter

## Table of Contents

- [Introduction](#introduction)
- [Uses](#uses)
    - [Running from Command Line](#running-from-command-line)
    - [Running with Command Line Arguments](#running-with-command-line-arguments)
    - [Importing as a Module](#importing-as-a-module)
        - [Installing with pip](#installing-with-pip)
        - [`create_setup()`](#create_setup-takes-in)
        - [`set_login()`](#set_login-takes-in)
        - [`pypi_upload()`](#pypi_upload-takes-in)
- [Running](#running)
    - [Dependencies](#dependencies)
    - [Setting Up .env File](#setting-up-env-file)
    - [Running](#running-1)
- [Quality Assurance](#quality-assurance)
- [Suggestions](#suggestions)
- [Contributing](#contributing)
- [License](#license)

## Introduction

While working on my previous project: [text-excuse-generator](https://github.com/Huckdirks/text-excuse-generator), I just published my first package to [PyPi](https://pypi.org/project/text-excuse-generator/). I quickly realized that I wasn't going to be able to remember the command line arguments to pass into the required fields, and that I was bound to forget to change the version manually in the `setup.py` file every time I updated the package. So I decided to make a program that would automatically update the version number in the `setup.py` file and export a project to [PyPi](https://pypi.org/). I also added another script that would automatically create a `setup.py` file for me with the required fields.

## Uses

There are three main ways to interact with the program: by [running it in the command line](#running-from-command-line), by [running it with command line arguments](#running-with-command-line-arguments), or by [importing it](#importing-as-a-module) into another python file.

In order for this program to run, your project's directory must be set up as such:
Any files and directories in **[ ]**'s are optional, **but highly recommended!!!**
```
project_root_dir/
    pypi_uploader.py (can be downloaded from auto_pypi_uploader/ or substituted with a program that imports the module)
    setup.py (can be created with pypi_uploader.py or setup_file_creator.py)
    [README.md] (can also be in docs/)
    [LICENSE]

    main_module_name/
            __init__.py
            (other python files...)

    [docs/]
            [README.md]
```


You can also have multiple modules in the same directory, or even multiple modules within a module, but you will need to add the `__init__.py` file to each directory that contains a module. e.g.
```
project_root_dir/
    pypi_uploader.py (can be downloaded from auto_pypi_uploader/ or substituted with a program that imports the module)
    setup.py (can be created with pypi_uploader.py or setup_file_creator.py)
    [README.md] (can also be in docs/)
    [LICENSE]

    main_module_name/
            __init__.py
            (other python files...)
            main_submodule_name/
                    __init__.py
                    (other python files...)

    secondary_module_name/
            __init__.py
            (other python files...)

    [docs/]
            [README.md]
```

### Running from Command Line

I'd recommend downloading [pypi_uploader.py](../include/pypi_uploader.py) from [include](../include/pypi_uploader.py) into a project's [root directory](../) if you want the functionality of the whole module, or just [`setup_file_creator.py`](../auto_pypi_uploader/setup_file_creator.py) if you only want to make a `setup.py` file. You can run the program by typing:
```bash
python3 pypi_uploader.py
```

When you run the program normally, it will first check if a `setup.py` file exists in the current directory. If it doesn't, it will then run [`setup_file_creator`](../auto_pypi_uploader/setup_file_creator.py)`.create_setup()`, which will ask you for:
- The Project's Name
- The Project's Version
- The Project's Author
- The Project's Description

And ask you if you want to add these optional fields:
- The Project's License
- The Project's Long Description Type (From [README.md](README.md))
- The Project's URL
- The Required Packages
- Keywords
- Classifiers
- Minimum Python Version

*If you just want to create a `setup.py` file, run:*
```bash
python3 setup_file_creator.py
```


If a `setup.py` file already exists, [`pypi_uploader.py`](../auto_pypi_uploader/pypi_uploader.py) will then ask you for a new version number, and update it in `setup.py`. It will then upload the package to [PyPi](https://pypi.org/). If you haven't already set up your login credentials, it will then ask you for your username and password & save it, and then proceed to upload the package. It then automatically updates/ installs the package with `pip3 install --upgrade {project_name}`.

The program runs: `python3 setup.py sdist bdist_wheel` and `python3 twine upload dist/* -u "{USERNAME}" -p "{PASSWORD}"` to upload the package to [PyPi](https://pypi.org/).

### Running with Command Line Arguments

You can also run the program with command line arguments. If you want to send the text message, you can add `--send` or `-s` as the last argument. All command line arguments longer than a single word need to be in parentheses. I'd recommend downloading [`pypi_uploader.py`](../auto_pypi_uploader/pypi_uploader.py) into a project's [root directory](../) if you want all the functionality, or just [`setup_file_creator.py`](../auto_pypi_uploader/setup_file_creator.py) if you only want to make a `setup.py` file, and running them from the command line. Please also include the [LICENSE](../LICENSE) file in the same directory as any files you add from [this project](https://github.com/Huckdirks/auto-pypi-uploader).

#### **Creating a `setup.py` File**

If you want to create a `setup.py` file, run:
```bash
python3 setup_file_creator.py --name PROJECT_NAME --version VERSION --author AUTHOR --description DESCRIPTION [--license LICENSE] [--long_description_content_type LONG_DESCRIPTION_TYPE] [--url URL] [--install_requires "INSTALL_REQUIRES"] [--keywords "KEYWORDS"] [--classifiers "CLASSIFIERS"] [--python_requires PYTHON_REQUIRES]
```
Any parameters in [ ]'s are optional, and all parameters in " "'s can be a comma separated list: e.g.
```bash
python3 setup_file_creator.py -n auto_pypi_uploader -v "1.0.0" -a "Huck Dirksmeier" -d "A program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi." -l MIT -ld text/markdown -u https://github.com/Huckdirks/auto-pypi-uploader -i "twine, python-dotenv" -k "PyPi, Pip, setup, setup.py, automation" -c "Programming Language :: Python, License :: OSI Approved :: MIT License, Operating System :: OS Independent" -p ">=3.8"
```

#### **Uploading [PyPi](https://pypi.org/) Package & Adding Login Information**
If you want to upload a package to [PyPi](https://pypi.org/), run:
```bash
python3 pypi_uploader.py VERSION [--user USERNAME PASSWORD]
```
e.g.
```bash
python3 pypi_uploader.py "1.0.0" -u Huckdirks PASSWORD
```
This assumes that you've already made a `setup.py` file. If you just want to update the version number, run `python3 pypi_uploader.py VERSION`. This assumes that you've already set up your login credentials. To just add login credentials, run `python3 pypi_uploader.py --user USERNAME PASSWORD`. This will add your username and password to a `.env` file in the current directory. If you decide to update the version & login information in a single call, **make sure the version is the first argument!** **YOU ONLY NEED TO ADD YOUR LOGIN INFORMATION ONCE, OTHERWISE IT WILL OVERRIDE THE PREVIOUS LOGIN INFORMATION!!!**

### Importing as a Module

You can also import the program as a module into another python file.

#### Installing with pip

Simply run:
```bash
pip install auto-pypi-uploader
```
 The `auto_pypi_uploader` module has  two sub-modules:
- `setup_file_creator` has one function: [`create_setup()`](#create_setup-takes-in)
- `pypi_uploader` has two functions: [`pypi_upload()`](#pypi_upload-takes-in) and [`set_login()`](#set_login-takes-in)

To import the modules into your python file, put this at the top of your file:
```python
from auto_pypi_uploader.pypi_uploader import *
from auto_pypi_uploader.setup_file_creator import *
```
Or you can import the individual functions.

#### `create_setup()` takes in:
```python
create_setup(NAME: str, VERSION: str, AUTHOR: str, DESCRIPTION: str, help: bool, license: str, long_description_content_type: str, url: str, install_requires: list[str], keywords: list[str], classifiers: list[str], python_requires: str) -> bool
```
`create_setup()` returns True if able to generate `setup.py` and False if not. **All uppercase parameters are required if parameters are passed in, and each parameter must be defined in the function call. You can also omit all parameters, and the function will prompt you for each one manually.**

If you want to create a `setup.py` file, call the function like this:
```python
create_setup(name = "auto_pypi_uploader", version = "1.0.0", author = "Huck Dirksmeier", description = "A program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi.", license = "MIT", long_description_content_type = "text/markdown", url = "https://github.com/Huckdirks/auto-pypi-uploader", install_requires = ["twine", "python-dotenv"], keywords = ["PyPi", "Pip", "setup", "setup.py", "automation"], classifiers = ["Programming Language :: Python", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"], python_requires = ">=3.8")
```
Make sure to put the fields before the variables when calling the function.

#### `set_login()` takes in:
```python
set_login(USERNAME: str, PASSWORD: str) -> None
```
If you want to set up your .env file, call `set_login()` like this:
```python
set_login("USERNAME", "PASSWORD")
```
If you want user input, just call [`pypi_upload()`](#pypi_upload-takes-in).

#### `pypi_upload()` takes in:
```python
pypi_upload(VERSION: str, username: str, password: str) -> bool
```
`pypi_upload()` returns True if the package was successfully uploaded, and False if it wasn't. **All uppercase parameters are required if parameters are passed in, and each parameter must be defined in the function call. You can also omit all parameters, and the function will prompt you for the version, and the login info if not previously saved.**
If you want to upload a package & login to [PyPi](https://pypi.org/), call `pypi_upload()` like this:
```python
pypi_upload(version = "0.0.0", username = "USERNAME", password = "PASSWORD")
```

## Running

### Dependencies

#### Accounts

You'll need to create a [PyPi](https://pypi.org/account/register/) account. Once you get your account set up, you'll need to [set up the `.env` file](#setting-up-env-file) with this information:
- Username
- Password

#### Install Dependencies

Double click [`dependencies`](../dependencies), or run `bash `[`dependencies`](../dependencies) or `./`[`dependencies`](../dependencies) in the command line in the root directory to install the python dependencies. You must have [pip](https://pip.pypa.io/en/stable/installation/) installed to download the new dependencies. Also, you'll need to install [python](https://www.python.org/downloads/) yourself if you haven't already.

**[List of Dependencies](DEPENDENCIES.md)**

### Setting Up .env File

Either run the program without any arguments to manually input the information for the .env file, run with [command line arguments](#setting-up-env-file) to automatically input the information for the .env file, or pass in the correct parameters to the [`set_login()`](#set_login-takes-in) or [`pypi_upload()`](#pypi_upload-takes-in) function.

### Running

**YOU HAVE TO INSTALL THE DEPENDENCIES & SETUP THE `.env` FILE BEFORE TRYING TO RUN THE PROGRAM!!!**
If installed with pip, all dependencies should be installed automatically!

Run [`python3 pypi_uploader.py`](#running-from-command-line) or [`python3 pypi_uploader.py VERSION [--user USERNAME PASSWORD]`](#running-with-command-line-arguments) in the command line in the source directory.

More detailed instructions are in the [Uses](#uses) section.

## Quality Assurance
All variable, function, class, module, & file names are written in [snake_case](https://en.wikipedia.org/wiki/Snake_case) to make sure everything is consistent, and all `const` variables are written in ALL-CAPS. The code is also quite commented and the variable names are quite verbose, so it should be easy enough to understand what's going on.

If there are any other/better ways to check for quality assurance, please let me know in the [suggestions](https://github.com/Huckdirks/auto-pip-exporter/discussions/new?category=suggestions)!

## Suggestions

If you have any suggestions about anything, please create a [new discussion in suggestions](https://github.com/Huckdirks/auto-pip-exporter/discussions/new?category=suggestions).

## Contributing

Contributions are always welcomed! Look at [CONTRIBUTING.md](CONTRIBUTING.md) for more information.

## License

The project is available under the [MIT](https://opensource.org/licenses/MIT) license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Huckdirks/auto-pypi-exporter",
    "name": "auto-pypi-uploader",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": "",
    "keywords": "PyPi,Pip,setup,setup.py,automation",
    "author": "Huck Dirksmeier",
    "author_email": "Huckdirks@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c6/3a/6b051268643d4c952a28987e73bdc70368b13224dbecd3cad2c6941f41ea/auto_pypi_uploader-1.1.1.3.tar.gz",
    "platform": null,
    "description": "# Auto Pip Exporter\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Uses](#uses)\n    - [Running from Command Line](#running-from-command-line)\n    - [Running with Command Line Arguments](#running-with-command-line-arguments)\n    - [Importing as a Module](#importing-as-a-module)\n        - [Installing with pip](#installing-with-pip)\n        - [`create_setup()`](#create_setup-takes-in)\n        - [`set_login()`](#set_login-takes-in)\n        - [`pypi_upload()`](#pypi_upload-takes-in)\n- [Running](#running)\n    - [Dependencies](#dependencies)\n    - [Setting Up .env File](#setting-up-env-file)\n    - [Running](#running-1)\n- [Quality Assurance](#quality-assurance)\n- [Suggestions](#suggestions)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Introduction\n\nWhile working on my previous project: [text-excuse-generator](https://github.com/Huckdirks/text-excuse-generator), I just published my first package to [PyPi](https://pypi.org/project/text-excuse-generator/). I quickly realized that I wasn't going to be able to remember the command line arguments to pass into the required fields, and that I was bound to forget to change the version manually in the `setup.py` file every time I updated the package. So I decided to make a program that would automatically update the version number in the `setup.py` file and export a project to [PyPi](https://pypi.org/). I also added another script that would automatically create a `setup.py` file for me with the required fields.\n\n## Uses\n\nThere are three main ways to interact with the program: by [running it in the command line](#running-from-command-line), by [running it with command line arguments](#running-with-command-line-arguments), or by [importing it](#importing-as-a-module) into another python file.\n\nIn order for this program to run, your project's directory must be set up as such:\nAny files and directories in **[ ]**'s are optional, **but highly recommended!!!**\n```\nproject_root_dir/\n    pypi_uploader.py (can be downloaded from auto_pypi_uploader/ or substituted with a program that imports the module)\n    setup.py (can be created with pypi_uploader.py or setup_file_creator.py)\n    [README.md] (can also be in docs/)\n    [LICENSE]\n\n    main_module_name/\n            __init__.py\n            (other python files...)\n\n    [docs/]\n            [README.md]\n```\n\n\nYou can also have multiple modules in the same directory, or even multiple modules within a module, but you will need to add the `__init__.py` file to each directory that contains a module. e.g.\n```\nproject_root_dir/\n    pypi_uploader.py (can be downloaded from auto_pypi_uploader/ or substituted with a program that imports the module)\n    setup.py (can be created with pypi_uploader.py or setup_file_creator.py)\n    [README.md] (can also be in docs/)\n    [LICENSE]\n\n    main_module_name/\n            __init__.py\n            (other python files...)\n            main_submodule_name/\n                    __init__.py\n                    (other python files...)\n\n    secondary_module_name/\n            __init__.py\n            (other python files...)\n\n    [docs/]\n            [README.md]\n```\n\n### Running from Command Line\n\nI'd recommend downloading [pypi_uploader.py](../include/pypi_uploader.py) from [include](../include/pypi_uploader.py) into a project's [root directory](../) if you want the functionality of the whole module, or just [`setup_file_creator.py`](../auto_pypi_uploader/setup_file_creator.py) if you only want to make a `setup.py` file. You can run the program by typing:\n```bash\npython3 pypi_uploader.py\n```\n\nWhen you run the program normally, it will first check if a `setup.py` file exists in the current directory. If it doesn't, it will then run [`setup_file_creator`](../auto_pypi_uploader/setup_file_creator.py)`.create_setup()`, which will ask you for:\n- The Project's Name\n- The Project's Version\n- The Project's Author\n- The Project's Description\n\nAnd ask you if you want to add these optional fields:\n- The Project's License\n- The Project's Long Description Type (From [README.md](README.md))\n- The Project's URL\n- The Required Packages\n- Keywords\n- Classifiers\n- Minimum Python Version\n\n*If you just want to create a `setup.py` file, run:*\n```bash\npython3 setup_file_creator.py\n```\n\n\nIf a `setup.py` file already exists, [`pypi_uploader.py`](../auto_pypi_uploader/pypi_uploader.py) will then ask you for a new version number, and update it in `setup.py`. It will then upload the package to [PyPi](https://pypi.org/). If you haven't already set up your login credentials, it will then ask you for your username and password & save it, and then proceed to upload the package. It then automatically updates/ installs the package with `pip3 install --upgrade {project_name}`.\n\nThe program runs: `python3 setup.py sdist bdist_wheel` and `python3 twine upload dist/* -u \"{USERNAME}\" -p \"{PASSWORD}\"` to upload the package to [PyPi](https://pypi.org/).\n\n### Running with Command Line Arguments\n\nYou can also run the program with command line arguments. If you want to send the text message, you can add `--send` or `-s` as the last argument. All command line arguments longer than a single word need to be in parentheses. I'd recommend downloading [`pypi_uploader.py`](../auto_pypi_uploader/pypi_uploader.py) into a project's [root directory](../) if you want all the functionality, or just [`setup_file_creator.py`](../auto_pypi_uploader/setup_file_creator.py) if you only want to make a `setup.py` file, and running them from the command line. Please also include the [LICENSE](../LICENSE) file in the same directory as any files you add from [this project](https://github.com/Huckdirks/auto-pypi-uploader).\n\n#### **Creating a `setup.py` File**\n\nIf you want to create a `setup.py` file, run:\n```bash\npython3 setup_file_creator.py --name PROJECT_NAME --version VERSION --author AUTHOR --description DESCRIPTION [--license LICENSE] [--long_description_content_type LONG_DESCRIPTION_TYPE] [--url URL] [--install_requires \"INSTALL_REQUIRES\"] [--keywords \"KEYWORDS\"] [--classifiers \"CLASSIFIERS\"] [--python_requires PYTHON_REQUIRES]\n```\nAny parameters in [ ]'s are optional, and all parameters in \" \"'s can be a comma separated list: e.g.\n```bash\npython3 setup_file_creator.py -n auto_pypi_uploader -v \"1.0.0\" -a \"Huck Dirksmeier\" -d \"A program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi.\" -l MIT -ld text/markdown -u https://github.com/Huckdirks/auto-pypi-uploader -i \"twine, python-dotenv\" -k \"PyPi, Pip, setup, setup.py, automation\" -c \"Programming Language :: Python, License :: OSI Approved :: MIT License, Operating System :: OS Independent\" -p \">=3.8\"\n```\n\n#### **Uploading [PyPi](https://pypi.org/) Package & Adding Login Information**\nIf you want to upload a package to [PyPi](https://pypi.org/), run:\n```bash\npython3 pypi_uploader.py VERSION [--user USERNAME PASSWORD]\n```\ne.g.\n```bash\npython3 pypi_uploader.py \"1.0.0\" -u Huckdirks PASSWORD\n```\nThis assumes that you've already made a `setup.py` file. If you just want to update the version number, run `python3 pypi_uploader.py VERSION`. This assumes that you've already set up your login credentials. To just add login credentials, run `python3 pypi_uploader.py --user USERNAME PASSWORD`. This will add your username and password to a `.env` file in the current directory. If you decide to update the version & login information in a single call, **make sure the version is the first argument!** **YOU ONLY NEED TO ADD YOUR LOGIN INFORMATION ONCE, OTHERWISE IT WILL OVERRIDE THE PREVIOUS LOGIN INFORMATION!!!**\n\n### Importing as a Module\n\nYou can also import the program as a module into another python file.\n\n#### Installing with pip\n\nSimply run:\n```bash\npip install auto-pypi-uploader\n```\n The `auto_pypi_uploader` module has  two sub-modules:\n- `setup_file_creator` has one function: [`create_setup()`](#create_setup-takes-in)\n- `pypi_uploader` has two functions: [`pypi_upload()`](#pypi_upload-takes-in) and [`set_login()`](#set_login-takes-in)\n\nTo import the modules into your python file, put this at the top of your file:\n```python\nfrom auto_pypi_uploader.pypi_uploader import *\nfrom auto_pypi_uploader.setup_file_creator import *\n```\nOr you can import the individual functions.\n\n#### `create_setup()` takes in:\n```python\ncreate_setup(NAME: str, VERSION: str, AUTHOR: str, DESCRIPTION: str, help: bool, license: str, long_description_content_type: str, url: str, install_requires: list[str], keywords: list[str], classifiers: list[str], python_requires: str) -> bool\n```\n`create_setup()` returns True if able to generate `setup.py` and False if not. **All uppercase parameters are required if parameters are passed in, and each parameter must be defined in the function call. You can also omit all parameters, and the function will prompt you for each one manually.**\n\nIf you want to create a `setup.py` file, call the function like this:\n```python\ncreate_setup(name = \"auto_pypi_uploader\", version = \"1.0.0\", author = \"Huck Dirksmeier\", description = \"A program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi.\", license = \"MIT\", long_description_content_type = \"text/markdown\", url = \"https://github.com/Huckdirks/auto-pypi-uploader\", install_requires = [\"twine\", \"python-dotenv\"], keywords = [\"PyPi\", \"Pip\", \"setup\", \"setup.py\", \"automation\"], classifiers = [\"Programming Language :: Python\", \"License :: OSI Approved :: MIT License\", \"Operating System :: OS Independent\"], python_requires = \">=3.8\")\n```\nMake sure to put the fields before the variables when calling the function.\n\n#### `set_login()` takes in:\n```python\nset_login(USERNAME: str, PASSWORD: str) -> None\n```\nIf you want to set up your .env file, call `set_login()` like this:\n```python\nset_login(\"USERNAME\", \"PASSWORD\")\n```\nIf you want user input, just call [`pypi_upload()`](#pypi_upload-takes-in).\n\n#### `pypi_upload()` takes in:\n```python\npypi_upload(VERSION: str, username: str, password: str) -> bool\n```\n`pypi_upload()` returns True if the package was successfully uploaded, and False if it wasn't. **All uppercase parameters are required if parameters are passed in, and each parameter must be defined in the function call. You can also omit all parameters, and the function will prompt you for the version, and the login info if not previously saved.**\nIf you want to upload a package & login to [PyPi](https://pypi.org/), call `pypi_upload()` like this:\n```python\npypi_upload(version = \"0.0.0\", username = \"USERNAME\", password = \"PASSWORD\")\n```\n\n## Running\n\n### Dependencies\n\n#### Accounts\n\nYou'll need to create a [PyPi](https://pypi.org/account/register/) account. Once you get your account set up, you'll need to [set up the `.env` file](#setting-up-env-file) with this information:\n- Username\n- Password\n\n#### Install Dependencies\n\nDouble click [`dependencies`](../dependencies), or run `bash `[`dependencies`](../dependencies) or `./`[`dependencies`](../dependencies) in the command line in the root directory to install the python dependencies. You must have [pip](https://pip.pypa.io/en/stable/installation/) installed to download the new dependencies. Also, you'll need to install [python](https://www.python.org/downloads/) yourself if you haven't already.\n\n**[List of Dependencies](DEPENDENCIES.md)**\n\n### Setting Up .env File\n\nEither run the program without any arguments to manually input the information for the .env file, run with [command line arguments](#setting-up-env-file) to automatically input the information for the .env file, or pass in the correct parameters to the [`set_login()`](#set_login-takes-in) or [`pypi_upload()`](#pypi_upload-takes-in) function.\n\n### Running\n\n**YOU HAVE TO INSTALL THE DEPENDENCIES & SETUP THE `.env` FILE BEFORE TRYING TO RUN THE PROGRAM!!!**\nIf installed with pip, all dependencies should be installed automatically!\n\nRun [`python3 pypi_uploader.py`](#running-from-command-line) or [`python3 pypi_uploader.py VERSION [--user USERNAME PASSWORD]`](#running-with-command-line-arguments) in the command line in the source directory.\n\nMore detailed instructions are in the [Uses](#uses) section.\n\n## Quality Assurance\nAll variable, function, class, module, & file names are written in [snake_case](https://en.wikipedia.org/wiki/Snake_case) to make sure everything is consistent, and all `const` variables are written in ALL-CAPS. The code is also quite commented and the variable names are quite verbose, so it should be easy enough to understand what's going on.\n\nIf there are any other/better ways to check for quality assurance, please let me know in the [suggestions](https://github.com/Huckdirks/auto-pip-exporter/discussions/new?category=suggestions)!\n\n## Suggestions\n\nIf you have any suggestions about anything, please create a [new discussion in suggestions](https://github.com/Huckdirks/auto-pip-exporter/discussions/new?category=suggestions).\n\n## Contributing\n\nContributions are always welcomed! Look at [CONTRIBUTING.md](CONTRIBUTING.md) for more information.\n\n## License\n\nThe project is available under the [MIT](https://opensource.org/licenses/MIT) license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A program to automate the creation of the 'setup.py' file, changing a pip package's version, & publishing it to PyPi.",
    "version": "1.1.1.3",
    "split_keywords": [
        "pypi",
        "pip",
        "setup",
        "setup.py",
        "automation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a15140f28beca1db926ed18300c731ee74689fd09adf712074c6d67d66aafe9",
                "md5": "672d6a0eaa133c3a1df13b43fa21ac07",
                "sha256": "93d82ea0adec1a31926f36d2c0a544cb903d361266aca227b61561c159c83393"
            },
            "downloads": -1,
            "filename": "auto_pypi_uploader-1.1.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "672d6a0eaa133c3a1df13b43fa21ac07",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.0",
            "size": 12007,
            "upload_time": "2023-04-11T12:27:38",
            "upload_time_iso_8601": "2023-04-11T12:27:38.888205Z",
            "url": "https://files.pythonhosted.org/packages/4a/15/140f28beca1db926ed18300c731ee74689fd09adf712074c6d67d66aafe9/auto_pypi_uploader-1.1.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c63a6b051268643d4c952a28987e73bdc70368b13224dbecd3cad2c6941f41ea",
                "md5": "397e24c0692aee2f2138e8408a059dc6",
                "sha256": "da73849581798161849558ef26ad07d76a6f379c5897954260d2f4df821612a7"
            },
            "downloads": -1,
            "filename": "auto_pypi_uploader-1.1.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "397e24c0692aee2f2138e8408a059dc6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 14105,
            "upload_time": "2023-04-11T12:27:42",
            "upload_time_iso_8601": "2023-04-11T12:27:42.741973Z",
            "url": "https://files.pythonhosted.org/packages/c6/3a/6b051268643d4c952a28987e73bdc70368b13224dbecd3cad2c6941f41ea/auto_pypi_uploader-1.1.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-11 12:27:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Huckdirks",
    "github_project": "auto-pypi-exporter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "auto-pypi-uploader"
}
        
Elapsed time: 0.05772s