-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.28 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as file:
description = file.read()
setup(
name='flask-webapp-builder',
version='1.2.0',
packages=find_packages(),
author='Christian Garcia',
author_email='iyaniyan03112003@gmail.com',
description='A Flask Webapp Builder is designed to generate a basic fully flask project structure. Including the directory folders and files also run-server script to execute the webapp server.',
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/christiangarcia0311/flask-webapp-builder',
license='MIT',
entry_points={
'console_scripts': [
'build-flask-webapp = FlaskWebApp.build_flask_webapp:main',
],
},
install_requires=[
'Flask',
],
include_package_data=True,
package_data={
'FlaskWebApp': [
'data_assets/logo.png',
'data_assets/icon.jpg',
'data_assets/Rubik-Regular.ttf',
],
},
classifiers= [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)