Skip to content

Commit

Permalink
Fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberdelia committed Jan 22, 2018
1 parent 72c1b67 commit 38b4dad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (©) 2008 Andreas Pelme <andreas@pelme.se>
Copyright (©) 2011-2014 Timothée Peignier <timothee.peignier@tryphon.org>
Copyright (©) 2011-2018 Timothée Peignier <timothee.peignier@tryphon.org>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[wheel]
universal = 1

[metadata]
license_file = LICENSE
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
from setuptools import setup, find_packages
import sys

install_requires = []
if (sys.version_info[0], sys.version_info[1]) < (3, 2):
install_requires.append('futures>=2.1.3')

setup(
name='django-pipeline',
version='1.6.13',
Expand All @@ -20,7 +16,7 @@
license='MIT',
packages=find_packages(exclude=['tests', 'tests.tests']),
zip_safe=False,
install_requires=install_requires,
extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
include_package_data=True,
keywords=('django pipeline asset compiling concatenation compression'
' packaging'),
Expand Down

0 comments on commit 38b4dad

Please sign in to comment.