Skip to content

Commit

Permalink
Add Apache license header to setup and init
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Feb 27, 2020
1 parent 1858ed7 commit 4352754
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
16 changes: 16 additions & 0 deletions https_everywhere/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
"""HTTPS Everywhere."""

"""
Copyright 2020 John Vandenberg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

__version__ = "0.2.1"
21 changes: 20 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
#!/usr/bin/env python
"""HTTPS Everywhere."""

"""
Copyright 2020 John Vandenberg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from setuptools import find_packages, setup

__version__ = "0.2.1"

classifiers = """\
Environment :: Console
Environment :: Plugins
Expand All @@ -26,7 +45,7 @@

setup(
name="https-everywhere",
version="0.2.1",
version=__version__,
description="Privacy for Pythons. Requests adapters for HTTPS, including HSTS preloading and HTTPS Everywhere rules",
license="Apache-2.0",
author_email="[email protected]",
Expand Down

0 comments on commit 4352754

Please sign in to comment.