Skip to content

Commit

Permalink
Merge pull request #9 from zmallen/package_data
Browse files Browse the repository at this point in the history
Use package data in setup
  • Loading branch information
zmallen authored Jul 27, 2017
2 parents 8118877 + 5f7d683 commit dfe3a13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
from setuptools import setup

setup(name='ftw',
version='1.1.3',
version='1.1.4',
description='Framework for Testing WAFs',
author='Chaim Sanders, Zack Allen',
author_email='zma4580@gmail.com, chaim.sanders@gmail.com',
url='https://www.github.com/crs-support/ftw',
download_url='https://github.com/crs-support/ftw/tarball/1.1.3',
download_url='https://github.com/crs-support/ftw/tarball/1.1.4',
include_package_data=True,
package_data={
'ftw': ['util/public_suffix_list.dat']
},
entry_points = {
'pytest11': [
'ftw = ftw.pytest_plugin'
Expand Down

0 comments on commit dfe3a13

Please sign in to comment.