forked from programmer-ke/dj-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 736 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 736 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
25
26
import os
import sys
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
reqs = ['datadog==0.12.0', 'six', 'psutil==4.4.2']
if [sys.version_info[0], sys.version_info[1]] < [2, 7]:
reqs.append("simplejson>=2.0.9")
setup(
name='dj_datadog',
version='0.1.2',
packages=['dj_datadog'],
include_package_data=True,
license='BSD',
description=('A simple Django middleware for submitting '
'timings and exceptions to Datadog.'),
long_description=README,
author='Conor Branagan',
author_email='conor.branagan@gmail.com',
maintainer="Kenny Rachuonyo",
maintainer_email="kenny.rachuonyo@gmail.com",
install_requires=reqs
)