-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.2 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
35
36
37
38
39
40
41
42
"""Setup.py.
"""
from os import path
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
README_FILE = path.join(path.dirname(path.abspath(__file__)), 'README.md')
try:
import m2r
LONG_DESCRIPTION = m2r.parse_from_file(README_FILE)
except Exception:
LONG_DESCRIPTION = ''
setup(
name='django-datadog-compatibility',
version='0.0.2',
description="A simple DataDog Integration for Django",
author="SF Software limited t/a Pebble",
author_email="[email protected]",
url="https://github.com/mypebble/django-datadog",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license='MIT',
install_requires=['six', 'datadog', 'django'],
classifiers=CLASSIFIERS,
long_description=LONG_DESCRIPTION,
test_suite='django_datadog.tests',
)