-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
34 lines (31 loc) · 1.19 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[metadata]
name = Myte
version = 0.2.0
author = Samuel Doghor
author_email = talkto@samdoghor.com
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
classifiers =
Programming Language :: Python :: 3,
Programming Language :: Python :: 3.6,
Programming Language :: Python :: 3.7,
Programming Language :: Python :: 3.8,
Programming Language :: Python :: 3.9,
License :: OSI Approved :: MIT License,
Operating System :: OS Independent,
Intended Audience :: Developers,
Environment :: Console,
keywords = Myte, Flask, FastAPI, Tornado, Bottle, Pyramid, CherryPy, Boilerplate, Web framework, Project bootstrapping, Framework
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
install_requires =
typer
inquirer
rich
[options.entry_points]
console_scripts =
create-myte = packages.main:main