-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
51 lines (45 loc) · 815 Bytes
/
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
[metadata]
name = masterthesis
version = 0.0.1
description = Master thesis in NLP
long_description = file: README.md
author = Stig Johan Berggren
author_email = [email protected]
classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
[options]
packages = find:
python_requires = ~= 3.5
install_requires =
gensim
ipykernel
keras
matplotlib
numpy
pandas
scikit-learn
scipy
tensorflow
tqdm
[options.extras_require]
dev =
autopep8
flake8
flake8-import-order
mypy
pytest
[flake8]
application-import-names = masterthesis
exclude = venv
import-order-style = google
max-complexity = 10
max-line-length = 100
[pycodestyle]
max-line-length = 100
[yapf]
based_on_style = facebook
column_limit = 100
[mypy]
ignore_missing_imports = True
python_version = 3.5