debian-django-admin-rangefi.../setup.py

52 lines
1.6 KiB
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def get_packages(package):
return [dirpath for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
def get_package_data(package):
walk = [(dirpath.replace(package + os.sep, '', 1), filenames)
for dirpath, dirnames, filenames in os.walk(package)
if not os.path.exists(os.path.join(dirpath, '__init__.py'))]
filepaths = []
for base, filenames in walk:
filepaths.extend([os.path.join(base, filename)
for filename in filenames])
return {package: filepaths}
setup(
name='django-admin-rangefilter',
version='0.1.0',
url='https://github.com/silentsokolov/django-admin-rangefilter',
license='MIT',
author='Dmitriy Sokolov',
author_email='silentsokolov@gmail.com',
description='django-admin-rangefilter app, add the filter by a custom date range on the admin UI.',
zip_safe=False,
include_package_data=True,
platforms='any',
packages=get_packages('rangefilter'),
package_data=get_package_data('rangefilter'),
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'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 :: 3',
'Topic :: Utilities',
],
)