-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (47 loc) · 1.15 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
[metadata]
name = housing_value
version = 0.0.0
author = satyampurwar
description = housing value package
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/satyampurwar/ml-engineering
project_urls =
Bug Tracker = https://github.com/satyampurwar/ml-engineering/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
[options.packages.find]
where = src
[isort]
profile = black
[flake8]
max-line-length = 88
extend-ignore = E203, E501
[tool:pytest]
testpaths = tests
python_files = test_*.py *_test.py
[Default]
raw_data_url = https://raw.githubusercontent.com/ageron/handson-ml/master/datasets/housing/housing.tgz
log_level = DEBUG
log_directory = logs
log_data = logs/main.log
raw_data = data/raw
processed_data = data/processed
pickle_data = artifacts
imputer_file = imputer.pkl
model_file = model.pkl
pipe_file = pipe.pkl
output_data = data/processed
output_file = output.csv
[Data]
rooms_ix = 3
bedrooms_ix = 4
population_ix = 5
households_ix = 6