-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
34 lines (33 loc) · 1.14 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
from setuptools import setup
setup(
name="Flask-Analytics",
version="0.6.0",
author="Mihir Singh (@citruspi)",
author_email="[email protected]",
description="Analytics snippets generator extension for the Flask framework",
url='https://github.com/citruspi/Flask-Analytics',
packages=['flask_analytics', 'flask_analytics.providers'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
],
classifiers=[
'License :: Public Domain',
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Framework :: Flask',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet'
]
)