-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (52 loc) · 1.28 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
[metadata]
name = met_jobs
version = 0.2.2
author = Giacomo Caria
author_email = [email protected]
description = Search engine for the jobs advertised via the Met-jobs mailing list
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/gcaria/met-jobs
classifiers =
Development Status :: 4 - Beta
Operating System :: OS Independent
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
include_package_data = true
python_requires = >= 3.8
install_requires =
pandas>=1.2.1
scikit-learn>=0.24.1
scripts =
scripts/search_met
scripts/create_db
[options.extras_require]
scrape =
requests
beautifulsoup4
tqdm
lxml
[isort]
profile = black
skip_gitignore = true
force_to_top = true
line_length = 88
default_section = THIRDPARTY
known_first_party = met_jobs
[flake8]
max-line-length = 88
ignore =
E203 # Space before : (needed for black formatting of slices)
W503 # Line break before binary operator (needed for black)
exclude=
.eggs
doc
.jupyter
.ipynb_checkpoints