-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·69 lines (61 loc) · 2.02 KB
/
setup.py
File metadata and controls
executable file
·69 lines (61 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
from setuptools import find_packages, setup
from wagtailgmaps import __version__
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
# Package dependencies
install_requires = []
# Testing dependencies
testing_extras = [
# Required for running the tests
"tox~=4.26.0",
# For coverage and PEP8 linting
"coverage>=4.1.0,<4.2",
"flake8>=3.2.0,<3.3",
"flake8-colors>=0.1.6,<1",
"isort==4.2.5",
# For test site
"Django>=4.2",
"wagtail>=7.0.0",
]
# Documentation dependencies
documentation_extras = []
setup(
name="wagtailgmaps",
version=__version__,
packages=find_packages(),
include_package_data=True,
license="MIT",
description="Google Maps widget for address fields in Wagtail",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/springload/wagtailgmaps/",
author="Springload",
author_email="hello@springload.co.nz",
project_urls={
"Changelog": "https://github.com/springload/wagtailgmaps/blob/master/CHANGELOG.md",
},
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
install_requires=install_requires,
extras_require={
"testing": testing_extras,
"docs": documentation_extras,
},
)