-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·41 lines (35 loc) · 1.1 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
# coding: utf-8
from setuptools import setup, find_packages
import os
# not so bad: http://joebergantine.com/blog/2015/jul/17/releasing-package-pypi/
version = __import__('filebase').__version__
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-filebase",
version=version,
url='http://github.com/benzkji/django-filebase',
license='MIT',
platforms=['OS Independent'],
description="media management for django",
long_description=read('PYPI.rst'),
author=u'Ben Stähli',
author_email='[email protected]',
packages=find_packages(),
install_requires=(
'Django>=1.11',
'easy-thumbnails>=2.0',
),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)