forked from samluescher/django-media-tree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (27 loc) · 987 Bytes
/
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
# encoding=utf8
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-media-tree",
version = "0.7.0",
url = 'http://github.com/philomat/django-media-tree',
license = 'BSD',
description = "Django Media Tree is a Django app for managing your website's media files in a folder tree, and using them in your own applications.",
long_description = README,
author = u'Samuel Luescher',
author_email = 'sam at luescher dot org',
packages = find_packages(),
include_package_data=True,
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',
]
)