Skip to content

Commit 11230b3

Browse files
committed
Initial commit
1 parent 1449593 commit 11230b3

4 files changed

Lines changed: 3 additions & 42 deletions

File tree

git_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ email: "dominic@davis-foster.co.uk"
66
version: "0.0.0"
77
username: "domdfcoding"
88
license: 'MIT'
9-
short_desc: "Check for use of platform specific strftime codes using Flake8."
9+
short_desc: "A flake8 plugin which checks for use of platform specific strftime codes using ."
1010

1111
conda_channels:
1212
- domdfcoding

requirements-dev.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flake8>=3.7
2+
importlib-metadata>=0.9;python_version<"3.8"

setup.cfg

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,10 @@
11
[metadata]
2-
name = flake8_strftime
3-
version = 1.6.0
4-
description = flake8 plugin which checks for misuse of `sys.version` or `sys.version_info`
5-
long_description = file: README.md
6-
long_description_content_type = text/markdown
7-
url = https://github.com/asottile/flake8-2020
82
author = Anthony Sottile
93
author_email = asottile@umich.edu
10-
license = MIT
11-
license_file = LICENSE
12-
classifiers =
13-
License :: OSI Approved :: MIT License
14-
Programming Language :: Python :: 3
15-
Programming Language :: Python :: 3 :: Only
16-
Programming Language :: Python :: 3.6
17-
Programming Language :: Python :: 3.7
18-
Programming Language :: Python :: 3.8
19-
20-
[options]
21-
py_modules = flake8_strftime
22-
install_requires =
23-
flake8>=3.7
24-
importlib-metadata>=0.9;python_version<"3.8"
25-
python_requires = >=3.6.1
264

275
[options.entry_points]
286
flake8.extension =
297
STRFTIME=flake8_strftime:Plugin
308

319
[bdist_wheel]
3210
universal = True
33-
34-
[coverage:run]
35-
plugins = covdefaults
36-
37-
[mypy]
38-
check_untyped_defs = true
39-
disallow_any_generics = true
40-
disallow_incomplete_defs = true
41-
disallow_untyped_defs = true
42-
no_implicit_optional = true
43-
44-
[mypy-testing.*]
45-
disallow_untyped_defs = false
46-
47-
[mypy-tests.*]
48-
disallow_untyped_defs = false

0 commit comments

Comments
 (0)