-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (73 loc) · 1.94 KB
/
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
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
76
77
78
79
80
81
[metadata]
name = bray
version = attr: bray._version.__version__
# Must be same as bray/_version.py
#version='0.2.0'
description = Simple batch API for geocoding in Python using Geoclient
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/mlipper/bray
author = Matthew Lipper
author_email = mlipper@gmail.com
license = Apache-2.0
license_files = LICENSE.txt
classifiers =
Development Status:: 3 - Alpha
Intended Audience :: Developers
Topic :: Utilities
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
keywords = etl, geocoding, nyc, geoclient
project_urls =
Documentation=https://bray.readthedocs.io
Changelog=https://bray.readthedocs.io/en/latest/changelog.html
Tracker=https://github.com/mlipper/bray/issues
[options]
packages = find:
install_requires =
bonobo==0.7.0rc3
dynaconf
python_requires = >=3.8
package_dir =
=src
zip_safe = no
# See pyproject.toml: [build-system].requires
# setup_requires = setuptools>=42.0
[options.entry_points]
console_scripts =
bray=bray.cli:main
[options.extras_require]
tests =
flake8
pytest-cov
pytest-travis-fold # necessary?
pytest
[options.package_data]
bray = settings.toml
[options.packages.find]
where=src
[flake8]
exclude = .tox,*.egg,ci/templates,build,dist
# exclude = .tox,.eggs,ci/templates,build,dist
# exclude = .git,__pycache__,docs/,*.egg,build,data
ignore =
# The default ignore list:
E121,E123,E126,E226,E24,E704
max_line_length = 140
select = E,W,F
[isort]
atomic=true
lines_after_imports=2
lines_between_types=1
multi_line_output=5
not_skip=__init__.py
known_first_party =
bray
tests
skip = .tox,.eggs,ci/templates,build,dist
[build-system]
requires = ["setuptools", "wheel"]