Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed MANIFEST.in
Empty file.
11 changes: 5 additions & 6 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
-e .
coverage==4.4.2
isort==4.2.15
py==1.4.34
pytest==3.2.3
pytest-django==3.1.2
tox==2.9.1
coverage
isort
pytest
pytest-django
tox
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pillow>=2.5
progressbar2>=3.0.0
33 changes: 29 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,18 +1,43 @@
[metadata]
name = django-stdimage
author = Johannes Hoppe
author-email = info@johanneshoppe.com
summary = Django Standarized Image Field
description-file = README.md
home-page = https://github.com/codingjoe/django-stdimage
license = MIT
classifier =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Topic :: Multimedia :: Graphics :: Graphics Conversion
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development
Programming Language :: Python :: 3
Framework :: Django

[files]
packages =
stdimage

[tool:pytest]
norecursedirs=venv env
norecursedirs=venv env .eggs
DJANGO_SETTINGS_MODULE=tests.settings
addopts = --tb=short -rxs --nomigrations

[pycodestyle]
max-line-length = 79
statistics = true
show-source = true
exclude = */migrations/*,docs/*,env/*,venv/*,.tox/*
exclude = */migrations/*,docs/*,env/*,venv/*,.tox/*,.eggs


[pydocstyle]
add-ignore = D1
match-dir = (?!tests|env|docs|\.).*
match = (?!setup).*.py

[coverage:run]
source = .
Expand All @@ -31,6 +56,6 @@ atomic = true
multi_line_output = 5
line_length = 79
combine_as_imports = true
skip = wsgi.py,docs,tests/test_models.py,.tox,env
skip = wsgi.py,docs,tests/test_models.py,.tox,env,.eggs
known_first_party = stdimage,tests
known_third_party = django
37 changes: 3 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,38 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from setuptools import setup

setup(
name='django-stdimage',
version='2.4.2',
description='Django Standarized Image Field',
author='codingjoe',
url='https://github.com/codingjoe/django-stdimage',
download_url='https://github.com/codingjoe/django-stdimage',
author_email='info@johanneshoppe.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
],
packages=find_packages(exclude=[
"*.tests", "*.tests.*", "tests.*", "tests", ".egg-info"
]),
include_package_data=True,
install_requires=[
'pillow>=2.5',
'progressbar2>=3.0.0',
],
setup_requires=['pbr'],
pbr=True,
)