-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
executable file
·75 lines (69 loc) · 2.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of django-unused-media.
# https://github.com/akolpakov/django-unused-media
# Licensed under the MIT license:
# http://www.opensource.org/licenses/MIT-license
# Copyright (c) 2015, Andrey Kolpakov <aakolpakov@gmail.com>
from setuptools import setup, find_packages
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
tests_require = [
'mock',
'nose',
'coverage',
'yanc',
'preggy',
'tox<2.0',
'coveralls',
'django_nose',
'pypandoc',
'flake8',
'isort',
'twine'
]
setup(
name='django-unused-media',
version='0.2.2',
description='Delete unused media files from Django project',
long_description=read_md('README.md'),
keywords='python django unused media remove delete',
author='Andrey Kolpakov',
author_email='aakolpakov@gmail.com',
url='https://github.com/akolpakov/django-unused-media',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
],
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
install_requires=[
# add your dependencies here
# remember to use 'package-name>=x.y.z,<x.y+1.0' notation (this way you get bugfixes)
'django>=1.8',
'six',
],
extras_require={
'tests': tests_require,
},
entry_points={
'console_scripts': [
# add cli scripts here in this form:
# 'django-unused-media=django-unused-media.cli:main',
],
},
)