-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Silence bad-continuation and duplicate-code pylint errors
- Loading branch information
Showing
68 changed files
with
3,547 additions
and
3,436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,28 +4,27 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='ona-tasking', | ||
version=__import__('tasking').__version__, | ||
description='A Django app that provides adds tasking to your Django ' | ||
'project.', | ||
license='Apache 2.0', | ||
author='Ona Kenya', | ||
author_email='[email protected]', | ||
url='https://github.com/onaio/tasking', | ||
packages=find_packages(exclude=['docs', 'tests']), | ||
name="ona-tasking", | ||
version=__import__("tasking").__version__, | ||
description="A Django app that provides adds tasking to your Django " "project.", | ||
license="Apache 2.0", | ||
author="Ona Kenya", | ||
author_email="[email protected]", | ||
url="https://github.com/onaio/tasking", | ||
packages=find_packages(exclude=["docs", "tests"]), | ||
install_requires=[ | ||
'Django >= 1.11.19, < 2.1', | ||
'python-dateutil', | ||
'markdown', # adds markdown support for browsable REST API | ||
'django-filter', # for filtering in the API | ||
'djangorestframework-gis', # for location model | ||
'django_countries', # for location model | ||
'django-mptt', # For MPTT | ||
"Django >= 1.11.19, < 2.1", | ||
"python-dateutil", | ||
"markdown", # adds markdown support for browsable REST API | ||
"django-filter", # for filtering in the API | ||
"djangorestframework-gis", # for location model | ||
"django_countries", # for location model | ||
"django-mptt", # For MPTT | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.6', | ||
'Framework :: Django', | ||
'Framework :: Django :: 1.11', | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Framework :: Django", | ||
"Framework :: Django :: 1.11", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.