-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1 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
#!/usr/bin/env python
"""
Empty is a light wrapper around Flask which adds some
sensitive defaults to your project out of the box.
"""
from setuptools import setup
setup(
name='Empty',
version='0.4.4',
license='BSD',
url='https://github.com/italomaia/empty',
author='Italo Maia',
author_email='italo.maia@gmail.com',
description='Wrapper which makes Flask development easier',
long_description=__doc__,
zip_safe=False,
platforms='any',
packages=['empty'],
install_requires=[
'flask>=1.0',
'six>=1.11.0',
],
test_suite='runtests.suite',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)