-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
63 lines (53 loc) · 1.12 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
[metadata]
name = hayes
version = 0.1.0.post+gitver
description = Hayes -- Simpler Elasticsearch for Django
long_description = file: README.rst
keywords = elastictsearch, django
url = https://github.com/andersinno/hayes/
maintainer = Anders Innovations
maintainer_email = [email protected]
license = MIT
license_file = LICENSE
platforms = any
[options]
include_package_data = True
packages = find:
install_requires =
pyes
requests>=1.0
six>=1.9.0,<2.0
zip_safe = False
[options.packages.find]
exclude = tests, tests.*, hayes_demo, hayes_demo.*
[bdist_wheel]
universal = 1
[coverage:run]
branch = True
[flake8]
exclude = .tox,.git,.eggs,dist,venv,migrations
[isort]
multi_line_output=4
skip=.tox,dist,venv
not_skip=__init__.py
known_first_party=hayes
known_third_party=django,faker,requests,pyes,pytest,six
[prequ]
requirements-dev =
tox
requirements-stylecheck =
flake8
flake8-isort
flake8-print
pep8-naming
requirements-test =
mock
pytest
pytest-cov
pytest-sugar
requirements-demo =
Coffin>=0.3,<0.4
Django>=1.6,<1.7
fake-factory>=0.3,<0.4
Jinja2>=2.6,<2.7
lxml>=3,<4