-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (22 loc) · 884 Bytes
/
setup.py
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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="start_flask",
version="0.1.11",
author="Cesar Godoi",
author_email="[email protected]",
packages=["start_flask"],
package_dir={"start_flask": "start_flask"},
include_package_data=True,
description="Start a Flask project in a Application Factory Pattern",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cesargodoi/start_flask",
project_urls={"source code": "https://github.com/cesargodoi/start_flask",},
license="GNU GPLv3",
entry_points={"console_scripts": ["start_flask=start_flask.cli:main"]},
install_requires=["jinja2", "Click"],
)