forked from Eboreg/megahal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
50 lines (46 loc) · 1.21 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
[metadata]
name = megahal
version = attr: megahal.__version__
description = Python implementation of megahal markov bot (fork)
long_description = file: README.md
author = Chris Jones, Robert Huselius
author_email = [email protected]
long_description_content_type = text/markdown
url = https://github.com/Eboreg/megahal
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Education
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Linguistic
[options]
packages = megahal
python_requires = >=3.6
install_requires =
python-Levenshtein
scripts =
scripts/megahal
[flake8]
exclude =
.git
__pycache__
*.pyi
ignore = W504,W601,F821,F723
max-line-length = 119
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
line_length = 79
multi_line_output = 5
[mypy]
follow_imports = skip
show_error_codes = True
ignore_missing_imports = True
files = .