forked from qaqaqaqaowh/ftg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (35 loc) · 1.04 KB
/
setup.py
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name = 'ftg',
packages = find_packages(),
version = '1.1',
license='MIT',
description = 'A generator for a flask app template',
author = 'Nicholas Ong Wei Harn',
author_email = 'nicholasowh@hotmail.com',
url = 'https://github.com/qaqaqaqaowh/ftg',
download_url = 'https://github.com/qaqaqaqaowh/ftg/archive/1.1.tar.gz',
keywords = ['flask', 'template', 'generate'],
include_package_data = True,
install_requires=[
'flask',
'peewee',
'peewee-db-evolve',
'python-dotenv',
'psycopg2-binary',
'Flask-Assets',
'cssmin',
'jsmin',
'Flask-Cors'
],
entry_points = {
'console_scripts': ['ftg=src.__main__:main'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7'
],
)