forked from newsapps/django-boundaryservice
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
44 lines (38 loc) · 956 Bytes
/
setup.cfg
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
[metadata]
name = represent-boundaries
version = 0.10.2
author = Open North Inc.
author_email = [email protected]
license = MIT
description = A web API to geographic boundaries loaded from shapefiles, packaged as a Django app.
url = https://opennorth.github.io/represent-boundaries-docs/
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Framework :: Django
Topic :: Scientific/Engineering :: GIS
[options]
packages = find:
install_requires =
django-appconf
include_package_data = True
[options.packages.find]
exclude = boundaries.tests
[options.extras_require]
test =
coveralls
testfixtures
[isort]
line_length = 119
profile = black
[flake8]
max-line-length = 119
exclude = boundaries/migrations
per-file-ignores =
boundaries/tests/*: E501
[coverage:report]
omit =
*/migrations/*
*/tests/*