File tree 3 files changed +18
-16
lines changed
3 files changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ Documentation = "https://sphinx-intl.readthedocs.io"
48
48
sphinx-intl = " sphinx_intl.commands:main"
49
49
50
50
[tool .setuptools ]
51
- zip-safe = false
52
51
include-package-data = true
53
52
54
53
[tool .setuptools .dynamic ]
@@ -57,3 +56,7 @@ version = {attr = "sphinx_intl.__version__"}
57
56
[build-system ]
58
57
requires = [" setuptools" , " wheel" ]
59
58
build-backend = " setuptools.build_meta"
59
+
60
+ [tool .mypy ]
61
+ ignore_missing_imports = true
62
+ strict_optional = false
Original file line number Diff line number Diff line change 1
- # to bulid release:
2
- # 1. COMMENT OUT `[egg_info]` section
3
- # 2. $ pip install build
4
- # 3. $ python -m build
1
+ # 1. initialize
2
+ # $ pip install -U build twine
5
3
6
- # to test upload:
4
+ # 2. TEST build & release:
5
+ # $ rm -Rf build/
6
+ # $ python -m build
7
7
# $ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
8
8
9
- # to production upload:
9
+ # 3. PRODUCTION build & release:
10
+ # $ rm -Rf build/
11
+ # $ rm setup.cfg
12
+ # $ python -m build
10
13
# $ twine upload dist/*
11
14
12
15
[egg_info]
13
16
tag_build = dev
14
17
tag_date = true
15
-
16
- [flake8]
17
- ; show-pep8=true
18
- ; show-source=true
19
- max-line-length =95
20
-
21
- [mypy]
22
- ignore_missing_imports = True
23
- strict_optional = False
Original file line number Diff line number Diff line change 38
38
docutils
39
39
wheel
40
40
commands ={envpython} setup.py -q check -r -s sdist bdist_wheel
41
+
42
+ [flake8]
43
+ # show-pep8=true
44
+ # show-source=true
45
+ max-line-length =95
You can’t perform that action at this time.
0 commit comments