-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 985 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
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017 Brian McClure
#
# django-octopus is free software under terms of the MIT License.
#
from setuptools import setup, find_packages
description = """"""
setup(
name='django-octopus',
version='0.4.1',
packages=find_packages(),
include_package_data=True,
requires=['python (>= 3.6)', 'django (>= 1.8)'],
description='A simple AJAX pull framework for django, now with full' \
'featured demo',
author='Brian McClure',
author_email='brian@mcclure.pw',
url='https://github.com/brmc/django-octopus',
download_url='https://github.com/brmc/django-octopus.git',
license='MIT License',
keywords='django, ajax, front-end, pull',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
)