-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 1.01 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 find_packages, setup
setup(
name='Flask-Copilot',
version='0.3.0',
author='Jon Banafato',
author_email='jon@jonafato.com',
description='Simple navbar generation for Flask applications.',
license='BSD',
keywords='flask navigation',
url='https://github.com/jonafato/Flask-Copilot',
packages=find_packages(exclude=('docs', 'tests')),
install_requires=(
'Flask',
'sortedcontainers',
),
classifiers=(
'Development Status :: 4 - Beta',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
),
)