Metadata-Version: 2.1
Name: second-pkg-joeyding
Version: 0.0.7
Summary: Sample Project
Home-page: 
Author: Joey Ding
Author-email: joeyding@tencent.com
License: Apache 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Provides-Extra: security
Provides-Extra: socks
Provides-Extra: use_chardet_on_py3
License-File: LICENSE

# sample_project

This is a template project, you need to do the following to generate your project: 

- Text replacement: "sample_project" to "${your_project_name}"

- Text replacement: "sample-project" to "${your-project-name}"

- Text replacement: "./src/sample_project" to "./src/${your_project_name}"

- Edit "./src/${your_project_name}/\__version__.py"



## Prepare

### 1. Install the pip3 from https://pypi.org/project/pip/

### 2. Install the twine (publish)

```

pip3 install twine

```



## Commands

### 1. Install to environment:

```

pip3 install -r requirements-dev.txt

```

### 2. Packcge:

```

python3 setup.py sdist bdist_wheel

```

### 3. Packcge and Upload:

```

python3 setup.py sdist bdist_wheel

twine upload dist/*

```
