forked from RegioHelden/django-datawatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.39 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
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(
name='django-datawatch',
packages=find_packages(exclude=['example*']),
version='0.2.0',
description='Django Datawatch runs automated data checks in your Django installation',
author='Jens Nistler <[email protected]>, Bogdan Radko',
author_email='[email protected]',
install_requires=[
'celery>=3.1.23',
'Django>=1.9',
'django-bootstrap3>=7.0.1',
'django-braces>=1.9.0',
'django-extensions>=1.6.7',
'django-model-utils>=2.5',
'freezegun>=0.3.7',
'mock>=2.0.0',
'python-dateutil>=2.5.3',
],
license='MIT',
url='https://github.com/RegioHelden/django-datawatch',
download_url='',
keywords=['django', 'monitoring', 'datawatch', 'check', 'checks'],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
]
)