File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 11"""HTTPS Everywhere."""
22
3+ """
4+ Copyright 2020 John Vandenberg
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ """
18+
319__version__ = "0.2.1"
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2+ """HTTPS Everywhere."""
3+
4+ """
5+ Copyright 2020 John Vandenberg
6+
7+ Licensed under the Apache License, Version 2.0 (the "License");
8+ you may not use this file except in compliance with the License.
9+ You may obtain a copy of the License at
10+
11+ http://www.apache.org/licenses/LICENSE-2.0
12+
13+ Unless required by applicable law or agreed to in writing, software
14+ distributed under the License is distributed on an "AS IS" BASIS,
15+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ See the License for the specific language governing permissions and
17+ limitations under the License.
18+ """
219
320from setuptools import find_packages , setup
421
22+ __version__ = "0.2.1"
23+
524classifiers = """\
625 Environment :: Console
726Environment :: Plugins
2645
2746setup (
2847 name = "https-everywhere" ,
29- version = "0.2.1" ,
48+ version = __version__ ,
3049 description = "Privacy for Pythons. Requests adapters for HTTPS, including HSTS preloading and HTTPS Everywhere rules" ,
3150 license = "Apache-2.0" ,
3251 author_email = "jayvdb@gmail.com" ,
You can’t perform that action at this time.
0 commit comments