Skip to content

Commit 38b4dad

Browse files
committed
Fix packaging
1 parent 72c1b67 commit 38b4dad

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (©) 2008 Andreas Pelme <[email protected]>
2-
Copyright (©) 2011-2014 Timothée Peignier <[email protected]>
2+
Copyright (©) 2011-2018 Timothée Peignier <[email protected]>
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
[wheel]
22
universal = 1
33

4+
[metadata]
5+
license_file = LICENSE

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
from setuptools import setup, find_packages
55
import sys
66

7-
install_requires = []
8-
if (sys.version_info[0], sys.version_info[1]) < (3, 2):
9-
install_requires.append('futures>=2.1.3')
10-
117
setup(
128
name='django-pipeline',
139
version='1.6.13',
@@ -20,7 +16,7 @@
2016
license='MIT',
2117
packages=find_packages(exclude=['tests', 'tests.tests']),
2218
zip_safe=False,
23-
install_requires=install_requires,
19+
extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
2420
include_package_data=True,
2521
keywords=('django pipeline asset compiling concatenation compression'
2622
' packaging'),

0 commit comments

Comments
 (0)