Skip to content

Commit

Permalink
Merge pull request #38 from samdoghor/v1.0.0a1
Browse files Browse the repository at this point in the history
chore: minor changes
  • Loading branch information
samdoghor authored Jan 24, 2024
2 parents 8bb17f5 + b3e0fe3 commit b779ba9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
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

0 comments on commit b779ba9

Please sign in to comment.