Skip to content

Commit c5e9534

Browse files
committed
add additional files for pip
1 parent d34086c commit c5e9534

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

MANIFEST.in

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Include the README
2+
include *.md
3+
4+
# Include the license file
5+
include LICENSE.txt
6+

setup.cfg

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[metadata]
2+
# This includes the license file in the wheel.
3+
license_file = LICENSE.txt
4+
5+
[bdist_wheel]
6+
# This flag says to generate wheels that support both Python 2 and Python
7+
# 3. If your code will not run unchanged on both Python 2 and 3, you will
8+
# need to generate separate wheels for each Python version that you
9+
# support. Removing this line (or setting universal to 0) will prevent
10+
# bdist_wheel from trying to make a universal wheel. For more see:
11+
# https://packaging.python.org/tutorials/distributing-packages/#wheels
12+
universal=0

0 commit comments

Comments
 (0)