Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Commit

Permalink
quick & dirty relaxation of dateutil dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
wearebasti committed May 10, 2019
1 parent a22978e commit 36eab26
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
django-jsonfield>=1.0.0
python-dateutil==2.6.0
python-dateutil>=2.6.0
40 changes: 21 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
from distutils.core import setup

setup(
name='django-auditlog',
version='0.4.5',
packages=['auditlog', 'auditlog.migrations', 'auditlog.management', 'auditlog.management.commands'],
package_dir={'': 'src'},
url='https://github.com/jjkester/django-auditlog',
license='MIT',
author='Jan-Jelle Kester',
description='Audit log app for Django',
install_requires=[
'django-jsonfield>=1.0.0',
'python-dateutil==2.6.0'
name="django-auditlog",
version="0.4.5.1",
packages=[
"auditlog",
"auditlog.migrations",
"auditlog.management",
"auditlog.management.commands",
],
package_dir={"": "src"},
url="https://github.com/jjkester/django-auditlog",
license="MIT",
author="Jan-Jelle Kester",
description="Audit log app for Django",
install_requires=["django-jsonfield>=1.0.0", "python-dateutil>=2.6.0"],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
],
)

0 comments on commit 36eab26

Please sign in to comment.