forked from ecometrica/django-hashedfilenamestorage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix ecometrica#21 cannot install with poetry
- Loading branch information
G8s Bot
committed
Nov 24, 2022
1 parent
45b7ef1
commit 682d0f5
Showing
1 changed file
with
25 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,36 +4,36 @@ | |
from setuptools import setup | ||
|
||
|
||
if sys.version_info < (3, 4): | ||
install_requires = ['Django>=1.8,<2.0'] | ||
else: | ||
install_requires = ['Django>=1.8,!=2.0,!=2.0.1,!=2.0.2,!=2.0.3,!=2.0.4,!=2.0.5,!=2.0.6,!=2.0.7,!=2.0.8,!=2.0.9'] | ||
install_requires = [ | ||
'Django>=1.8,<2.0;python_version<"3.4"', | ||
'Django>=1.8,!=2.0,!=2.0.1,!=2.0.2,!=2.0.3,!=2.0.4,!=2.0.5,!=2.0.6,!=2.0.7,!=2.0.8,!=2.0.9; python_version>="3.4"', | ||
] | ||
|
||
|
||
setup( | ||
name='django-hashedfilenamestorage', | ||
version='2.4.1', | ||
description=('A Django storage backend that names files by hash value.'), | ||
long_description=open('README.rst', 'r').read(), | ||
author='Ecometrica', | ||
author_email='[email protected]', | ||
url='http://github.com/ecometrica/django-hashedfilenamestorage/', | ||
packages=['django_hashedfilenamestorage'], | ||
name="django-hashedfilenamestorage", | ||
version="2.4.1", | ||
description=("A Django storage backend that names files by hash value."), | ||
long_description=open("README.rst", "r").read(), | ||
author="Ecometrica", | ||
author_email="[email protected]", | ||
url="http://github.com/ecometrica/django-hashedfilenamestorage/", | ||
packages=["django_hashedfilenamestorage"], | ||
install_requires=install_requires, | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Software Development :: Libraries', | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Software Development :: Libraries", | ||
], | ||
zip_safe=True, | ||
tests_require=['pytest', 'tox'] | ||
tests_require=["pytest", "tox"], | ||
) |