Metadata-Version: 2.4
Name: jfrog-pypi-trial
Version: 200.0.0
Summary: Add your description here
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

## JFrog example project

This is an example python project demonstrating how to publish a module to Artifactory.

## Configuration

To resolve packages from Artifactory using pip, add the following to ~/.pip/pip.conf:
```
[global]
index-url = https://<Artifactory-url>/artifactory/api/pypi/<PyPI-Repository>/simple
local/simple
```

## Installation

Run the following commands to build & publish your module:
1. ```pip install twine```
2. ```python -m build --sdist``` or ```python setup.py sdist```
3. ```twine upload --repository-url http://<Artifactory-url>/artifactory/api/pypi/<PyPI-Repository> dist/* -u<USER> -p<TOKEN>```
