-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
31 lines (27 loc) · 1.12 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
from setuptools import setup
def readme():
with open('README.rst') as readme:
return readme.read()
setup(name='flask-now',
version='0.2.2',
description='Flask App Generator',
long_description=readme(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Code Generators',
'Development Status :: 3 - Alpha',
'Framework :: Flask',
'Programming Language :: Python :: 3 :: Only',
],
keywords='extension flask flask-extension flask-build-tool flask_now flask-now app-generator flask-app-generator app generator',
url='http://github.com/ozanonurtek/flask-now',
author='Ozan Onur Tek',
author_email='[email protected]',
packages=['flask_now'],
entry_points={'console_scripts': ['flask-now = flask_now.now:main']},
include_package_data=True,
zip_safe=False)