-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
76 lines (68 loc) · 2.34 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
75
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ____ ____ __ __
# /\ _`\ __/\ _`\ /\ \ /\ \/'\_/`\
# \ \ \/\ \ /\_\ \ \L\_\ `\`\\/'/\ \
# \ \ \ \ \\/\ \ \ _\L`\ `\ /'\ \ \__\ \
# \ \ \_\ \\ \ \ \ \L\ \`\ \ \ \ \ \_/\ \
# \ \____/_\ \ \ \____/ \ \_\ \ \_\\ \_\
# \/___//\ \_\ \/___/ \/_/ \/_/ \/_/
# \ \____/
# \/___/
#
# Convenient use of the Yandex map service for web development on
# the popular and free Django framework.
#
# Copyright (c) 2014 kebasyaty - Gennady Kostyunin
#
# django-editor-ymaps is free software under terms of the MIT License.
#
from os import path
from setuptools import find_packages, setup
VERSION = (2, 3, 11)
__version__ = '.'.join(map(str, VERSION))
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-editor-ymaps',
version=__version__,
packages=find_packages(),
include_package_data=True,
requires=['python (>= 3.12)', 'django (>= 5.0.6)'],
description='Creating and editing Yandex maps.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='kebasyaty',
author_email='[email protected]',
url='https://github.com/kebasyaty/django-editor-ymaps',
download_url='https://github.com/kebasyaty/django-editor-ymaps/tarball/master',
license='MIT License',
platforms=['any'],
keywords=['django', 'yandex', 'maps', 'admin', 'editor'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Natural Language :: Russian',
'Natural Language :: English',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'Django>=5.0',
'Pillow',
'django-imagekit',
'python-slugify',
'django-ckeditor',
'lxml',
'django-ipware',
'django-colorful',
'django-admin-sortable'
],
)