forked from meeb/django-distill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.48 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
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import (setup, find_packages)
version = 0.8
setup(
name='django-distill',
version=str(version),
url='https://github.com/mgrp/django-distill',
download_url='https://github.com/mgrp/django-distill/tarball/0.6',
author='the m group, https://m.pr/',
author_email='[email protected]',
description=('Static site renderer and publisher for Django.'),
license='MIT',
include_package_data=True,
install_requires=('django', 'requests'),
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=('django', 'distill', 'static', 's3', 'rackspace',
'google cloud storage'),
)
# eof