forked from cyberdelia/flask-statsd
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 747 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='Flask-Datadog',
version='0.1.4',
url='https://github.com/50onRed/flask-datadog.git',
license='BSD',
author='50onRed',
author_email='marcus.mccurdy@gmail.com',
description='Access to dogstatsd in your app.',
py_modules=['flask_datadog'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['Flask', 'datadog'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)