-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (33 loc) · 1.12 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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# setup.py
import os
from setuptools import setup
from django_bfm import __version__, __author__, __email__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-bfm",
version=__version__,
author=__author__,
author_email=__email__,
description=("Basic Django File Manager with multifile uploads, live file status, and file deleting."),
license="Apache",
keywords="django file manager",
url="https://github.com/simukis/django-bfm",
packages=['django_bfm'],
classifiers=[
'Framework :: Django',
'Environment :: Web Environment',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description=read('README.rst'),
include_package_data=True,
install_requires=['Django>=1.3'],
zip_safe=False
)