We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b93433 commit ec9f68aCopy full SHA for ec9f68a
setup.py
@@ -2,6 +2,7 @@
2
3
import os
4
from setuptools import setup
5
+import sys
6
7
8
def read(fname):
@@ -17,6 +18,10 @@ def read(fname):
17
18
author_email="srittau@rittau.biz",
19
url="https://github.com/srittau/python-asserts",
20
py_modules=["asserts", "test_asserts"],
21
+ data_files=[(
22
+ "lib/python{}.{}/site-packages".format(*sys.version_info[:2]),
23
+ ["asserts.pyi"],
24
+ )],
25
license="MIT",
26
classifiers=[
27
"Development Status :: 3 - Alpha",
0 commit comments