-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (54 loc) · 1.34 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
[metadata]
name = vending-machine
description = "Instrumenta tu app con Prometheus, compaing code"
long_description = file: README.rst
version = 2018.09.1
author = Agustín Herranz Cecilia
url = https://github.com/tinproject/....
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
=src
python_requires >= 3.5
install_requires =
Flask~=1.0.0
flask-wtf~=0.14.2
prometheus_client==0.3.1
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
dev =
check-manifest
test =
pytest
pytest-flask
flake8
[options.entry_points]
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
console_scripts =
vending-machine = vending.cli:cli
[options.package_data]
sample = package_data.dat
[egg_info]
tag_build = .dev
tag_date = 1
egg_base = src
[aliases]
release = egg_info -Db ''
[test]
# py.test options when running `python setup.py test`
addopts = --verbose
extras = True