-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 1.17 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
import setuptools
setuptools.setup(
name='cartridge-downloads',
description=(
'Digital product support for the Django/Mezzanine/Cartridge stack.'),
url='https://github.com/ryneeverett/cartridge-downloads',
author='Ryne Everett',
author_email='[email protected]',
license='BSD',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
packages=setuptools.find_packages(),
install_requires=[
'cartridge',
'django-downloadview',
'django-model-utils',
# 0.4.4 -- FileBrowseField's now return a FileField which is necessary
# for django-downloadview.See
# https://github.com/stephenmcd/filebrowser-safe/pull/77.
'filebrowser_safe>=0.4.4',
],
use_scm_version=True,
setup_requires=['setuptools_scm'],
include_package_data=True,
)