Skip to content

Commit 7ad7f11

Browse files
committed
Add MANIFEST.in to get LICENSE.txt in the package.
This also adds package_data and friends to the setup.py. Not that they seemed to do anything...
1 parent a860feb commit 7ad7f11

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include LICENSE.txt

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
url='https://github.com/ionrock/cachecontrol',
1313
keywords='requests http caching web',
1414
packages=setuptools.find_packages(),
15+
package_data={'': ['LICENSE.txt']},
16+
package_dir={'cachecontrol': 'cachecontrol'},
17+
include_package_data=True,
1518
description='httplib2 caching for requests',
1619
long_description=long_description,
1720
install_requires=[

0 commit comments

Comments
 (0)