-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (29 loc) · 987 Bytes
/
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
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(
name="Flask-Matomo",
version="1.1.1",
url="https://github.com/Lanseuo/flask-matomo",
license="MIT",
author="Lucas Hild",
author_email="[email protected]",
description="Track requests to your Flask website with Matomo ",
long_description=long_description,
packages=["flask_matomo"],
zip_safe=False,
include_package_data=True,
install_requires=["Flask"],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)