-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
74 lines (62 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import io
from setuptools import setup
about = {}
with io.open('django_activeurl/__about__.py', encoding='utf-8') as fp:
exec(fp.read(), about)
classifiers = '''\
Framework :: Django
Environment :: Web Environment
Intended Audience :: Developers
Topic :: Internet :: WWW/HTTP
License :: OSI Approved :: Apache Software License
Development Status :: 5 - Production/Stable
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
'''
def long_description():
with io.open('README.rst', encoding='utf-8') as fp:
return fp.read()
packages = [
str('django_activeurl'),
str('django_activeurl.templatetags'),
str('django_activeurl.ext'),
]
install_requires = [
'django<2;python_version<"3"',
'django;python_version>"2"',
'lxml',
'django-classy-tags',
'django_appconf',
]
setup(
name=about['__title__'],
version=about['__version__'],
url='https://github.com/hellysmile/django-activeurl/',
download_url='https://pypi.python.org/pypi/django-activeurl',
packages=packages,
description=about['__description__'],
long_description=long_description(),
author=about['__author__'],
author_email=about['__email__'],
zip_safe=False,
install_requires=install_requires,
license=about['__license__'],
classifiers=list(filter(None, classifiers.split('\n'))),
keywords=[
'django', 'url', 'link', 'active', 'css', 'templatetag', 'jinja2',
],
)