forked from Flimm/django-fullurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.44 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
from setuptools import setup, find_packages
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(BASE_DIR, 'README.rst'), 'rb').read().decode('UTF-8')
changelog = open(os.path.join(BASE_DIR, 'CHANGELOG.rst'), 'rb').read().decode('UTF-8')
setup(
name='django-fullurl',
version='0.4',
packages=find_packages(exclude=['testproject']),
author='David D Lowe',
author_email='[email protected]',
description='The template tag `fullurl` acts just like `url`, but it always prints absolute URLs with scheme and domain',
long_description=readme + '\n\n' + changelog,
license='mit',
keywords=['django'],
install_requires=[
'Django>=1.8',
],
url='https://github.com/Flimm/django-fullurl',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
)