Merge pull request #54 from carver/multifix

A bunch of little patches
This commit is contained in:
Jason Carver
2021-01-20 11:27:20 -08:00
committed by GitHub
2 changed files with 22 additions and 35 deletions

51
.gitignore vendored
View File

@ -18,6 +18,7 @@ develop-eggs
.installed.cfg .installed.cfg
lib lib
lib64 lib64
pip-wheel-metadata
venv* venv*
# Installer logs # Installer logs
@ -55,34 +56,10 @@ chains
# tox/pytest cache # tox/pytest cache
.cache .cache
.pytest_cache
# Test output logs # Test output logs
logs logs
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml
# Sensitive or high-churn files:
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
# Gradle:
.idea/gradle.xml
.idea/libraries
# Mongo Explorer plugin:
.idea/mongoSettings.xml
# VIM temp files # VIM temp files
*.sw[op] *.sw[op]
@ -90,24 +67,32 @@ logs
# mypy # mypy
.mypy_cache .mypy_cache
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# For a more precise, explicit template, see:
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
## General
.idea/*
.idea_modules/*
## File-based project format: ## File-based project format:
*.iws *.iws
## IntelliJ
out/
## Plugin-specific files: ## Plugin-specific files:
# IntelliJ ### mpeltonen/sbt-idea plugin
/out/ .idea_modules/
.idea*
#pip wheel metadata ### JIRA plugin
pip-wheel-metadata
# JIRA plugin
atlassian-ide-plugin.xml atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ) ### Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml
crashlytics.properties crashlytics.properties
crashlytics-build.properties crashlytics-build.properties
fabric.properties fabric.properties
# END JetBrains section

View File

@ -15,11 +15,11 @@ extras_require = {
"flake8==3.7.9", "flake8==3.7.9",
"isort>=4.2.15,<5", "isort>=4.2.15,<5",
"mypy==0.770", "mypy==0.770",
"pydocstyle>=3.0.0,<4", "pydocstyle>=5.0.0,<6",
], ],
'doc': [ 'doc': [
"Sphinx>=1.6.5,<2", "Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9", "sphinx_rtd_theme>=0.1.9,<1",
"towncrier>=19.2.0, <20", "towncrier>=19.2.0, <20",
], ],
'dev': [ 'dev': [
@ -70,6 +70,8 @@ setup(
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',