Skip to content

Commit c5235fd

Browse files
committed
Finally fix the missing files with a MANIFEST.in
1 parent bc8a28f commit c5235fd

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
graft pyt/vulnerability_definitions

pyt/vulnerability_definitions/__init__.py

Whitespace-only changes.

setup.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@
22
from setuptools import setup
33

44

5-
VERSION = '0.33'
5+
VERSION = '0.34'
66

77

88
setup(
99
name='python-taint',
1010
packages=find_packages(exclude=(['tests*'])),
1111
version=VERSION,
1212
include_package_data=True,
13-
package_data={
14-
'pyt.vulnerability_definitions': ['*.json', '*.pyt'],
15-
},
1613
description='Find security vulnerabilities in Python web applications'
1714
' using static analysis.',
1815
long_description="Check out PyT on `GitHub <https://github.com/python-security/pyt>`_!",

0 commit comments

Comments
 (0)