2014-09-26 14:53:44 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
from setuptools import setup, find_packages
|
2016-01-11 20:05:39 +00:00
|
|
|
from cachalot import __version__
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
CURRENT_PATH = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
|
|
with open(os.path.join(CURRENT_PATH, 'requirements.txt')) as f:
|
|
|
|
|
required = f.read().splitlines()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='django-cachalot',
|
2016-01-11 20:05:39 +00:00
|
|
|
version=__version__,
|
2020-02-12 05:52:12 +00:00
|
|
|
author='Bertrand Bordage, Andrew Chen Wang',
|
|
|
|
|
author_email='acwangpython@gmail.com',
|
2018-05-05 00:30:50 +00:00
|
|
|
url='https://github.com/noripyt/django-cachalot',
|
2021-05-13 16:56:49 +00:00
|
|
|
description='Caches your Django ORM queries and automatically invalidates them.',
|
2014-09-26 14:53:44 +00:00
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
|
classifiers=[
|
2015-02-23 20:21:07 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2014-09-26 14:53:44 +00:00
|
|
|
'Framework :: Django',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
2021-05-13 16:56:49 +00:00
|
|
|
'Framework :: Django :: 3.2',
|
2023-04-04 19:14:29 +00:00
|
|
|
'Framework :: Django :: 4.1',
|
|
|
|
|
'Framework :: Django :: 4.2',
|
2014-09-26 14:53:44 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2018-08-09 21:55:35 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2020-06-18 13:28:00 +00:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-11-09 02:01:14 +00:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2021-11-03 19:05:44 +00:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2023-04-04 19:14:29 +00:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2014-09-26 14:53:44 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
],
|
|
|
|
|
license='BSD',
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
install_requires=required,
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
zip_safe=False,
|
|
|
|
|
)
|