-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·54 lines (50 loc) · 1.51 KB
/
setup.py
File metadata and controls
executable file
·54 lines (50 loc) · 1.51 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# django-simple-help
# setup.py
from setuptools import (
setup,
find_packages,
)
# metadata
VERSION = (0, 6, 1)
__version__ = ".".join(map(str, VERSION))
setup(
name="django-simple-help",
version=__version__,
packages=find_packages(),
install_requires=[
"Django",
"django-annoying==0.10.3",
"django-wysiwyg-redactor==0.5.1",
],
extras_require={
"modeltranslation": [
"django-modeltranslation==0.12.1",
],
},
author="Alexei Andrushievich",
author_email="vint21h@vint21h.pp.ua",
description="Django reusable application providing page help",
license="MIT",
url="https://github.com/DCOD-OpenSource/django-simple-help/",
download_url="https://github.com/DCOD-OpenSource/django-simple-help/archive/{version}.tar.gz".format(**{"version": __version__, }),
zip_safe=False,
include_package_data=True,
classifiers=[
"Environment :: Plugins",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Framework :: Django :: 1.5",
"Framework :: Django :: 1.6",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
]
)