Skip to content

Commit ace5832

Browse files
committed
v0.3.0
1 parent e1fc018 commit ace5832

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

setup.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
# Note: To use the 'upload' functionality of this file, you must:
55
# $ pip install twine
66

7+
# Credits:
8+
# https://github.com/kennethreitz/setup.py
9+
10+
# Copyright <YEAR> <COPYRIGHT HOLDER>
11+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
13+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14+
715
import io
816
import os
917
import sys
@@ -19,7 +27,7 @@
1927
URL = "https://github.com/TypeError/secure"
2028
2129
AUTHOR = "Caleb Kinney"
22-
REQUIRES_PYTHON = ">=3.5"
30+
REQUIRES_PYTHON = ">=3.6"
2331
VERSION = "0.3.0"
2432

2533
# What packages are required for this module to be executed?
@@ -113,6 +121,9 @@ def run(self):
113121
install_requires=REQUIRED,
114122
extras_require=EXTRAS,
115123
include_package_data=True,
124+
package_data={
125+
"secure": ["*.pyi", "py.typed"],
126+
},
116127
license="MIT",
117128
classifiers=[
118129
# Trove classifiers

0 commit comments

Comments
 (0)