Metadata-Version: 2.1
Name: neps
Version: 0.0.1
Summary: This is a placeholder for Neps Academy
Home-page: https://github.com/ThiNepo
Author: Thiago Nepomuceno
Author-email: thi.nepo@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Project Creator

This project generates Python code to start a new project.

In the current state it supports well the following templates:

- [x] **basic**: A basic project with a main.py file
- [x] **cp**: Contains the files used to solve competitive programming problems.

Still need some testing:

- [ ] **pip**: A template to create a package that will be uploaded to PIP.

In the future, I expect to create templates that need more sophisticated code generation, such as:

- [ ] **flask**: A template to be used when starting a Flask project.

# Build and Upload

python setup.py sdist
python setup.py bdist_wheel

twine upload dist/\*


