forked from couralex6/kinney
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
31 lines (29 loc) · 1.19 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
# Setuptools configuration file for the "kinney" Python package.
[metadata]
name = kinney
[options]
# All local imports must use the "kinney." prefix. This provides for better
# control of import resolution and prevents name collision, but in order to
# better cooperate with other languages in the same repository, there is no
# "kinney" directory. Instead, this behavior is simulated by the `package_dir`
# directive indicating that the source directory for the "kinney" package is the
# repository root (`package_dir={'kinney': ''}` in `setup.py`).
#
# Note, however, that this setup is *not* supported by "development mode" ([1]),
# so that functionality is implemented by a "*.pth" file installed by
# `util/install_pth.py`.
#
# [1]: https://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode
package_dir = kinney=
packages =
kinney
kinney.controller
kinney.controller.chargepoint
kinney.controller.chargepoint.py
kinney.controller.chargepoint.py.classes
kinney.controller.chargepoint.py.test
kinney.orchestrator
# YAPF configuration for Python formatting.
# https://github.com/google/yapf/blob/master/README.rst#formatting-style
[yapf]
based_on_style = google