Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: minor changes #38

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,5 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

pss/
pss/
.pypirc
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@ authors = [
]
description = "Myte allows users to choose from popular web frameworks like Flask, FastAPI, and Tornado etc when initializing a new project. After entering a project name, the user selects their preferred framework which then generates the basic directory structure and boilerplate code to get started."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Boilerplate",
"Environment :: Console",
]
keywords = ["Myte", "Flask", "FastAPI", "Tornado", "Bottle", "Pyramid", "CherryPy", "Boilerplate", "Web framework", "Project bootstrapping", "Framework"]

[project.scripts]
create-myte = "packages.main:main"

[project.urls]
Homepage = "https://github.com/samdoghor/myte"
Issues = "https://github.com/samdoghor/myte/issues"
Issues = "https://github.com/samdoghor/myte/issues"
Changelog = "https://github.com/samdoghor/myte/blob/main/CHANGELOG.md"
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = Myte
version = 1.0.0a1
author = Samuel Doghor
author_email = [email protected]
description = Myte allows users to choose from popular web frameworks like Flask, FastAPI, and Tornado etc when initializing a new project
description = Myte allows users to choose from popular web frameworks like Flask, FastAPI, and Tornado etc when initializing a new project. After entering a project name, the user selects their preferred framework which then generates the basic directory structure and boilerplate code to get started.
long_description = file: README.md, CHANGELOG.md, LICENSE
license = MIT License
license_files = LICENSE
Expand All @@ -12,7 +12,6 @@ classifiers =
License :: OSI Approved :: MIT License,
Operating System :: OS Independent,
Intended Audience :: Developers,
Topic :: Software Development :: Boilerplate,
Environment :: Console,
keywords = Myte, Flask, FastAPI, Tornado, Bottle, Pyramid, CherryPy, Boilerplate, Web framework, Project bootstrapping, Framework

Expand All @@ -27,4 +26,4 @@ install_requires =

[options.entry_points]
console_scripts =
create-myte = myte.main:main
create-myte = packages.main:main