Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
engmtcdrm committed Apr 14, 2024
1 parent 14d816e commit f2df661
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

Initial release
27 changes: 27 additions & 0 deletions build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Build and Distribute
```sh
python -m build

# have Twine test the distribution
twine check dist/*

# test pypi site
python -m twine upload --repository testpypi dist/*

python -m twine upload --repository pypi dist/*
```


# Run Test Environment
```sh
python -m venv env

.\env\Scripts\activate

# test pypi site
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps banner

python -m pip install pytest

python -m pytest
```
22 changes: 22 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'

[project]
name = "proem"
version = "1.0.0"
authors = [
{ name="engmtcdrm", email="gabif54409@rolenot.com" },
]
description = "Python class to create a block of information on a command line application."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/engmtcdrm/proem"
"Bug Tracker" = "https://github.com/engmtcdrm/proem/issues"
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
colorama

0 comments on commit f2df661

Please sign in to comment.