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 05d9987 commit 187fb1eCopy full SHA for 187fb1e
Makefile
@@ -21,5 +21,4 @@ init3:
21
. env3/bin/activate && pip install --editable .
22
23
publish:
24
- python setup.py sdist upload
25
- python setup.py bdist_wheel upload
+ python setup.py sdist bdist_wheel upload
setup.py
@@ -9,9 +9,6 @@
9
with open('README.rst') as f:
10
readme = f.read()
11
12
-with open('LICENSE') as f:
13
- license = f.read()
14
-
15
setup(
16
name='whatthepatch',
17
version='0.0.3',
@@ -20,8 +17,9 @@
20
author='Christopher S. Corley',
18
author_email='[email protected]',
19
url='https://github.com/cscorley/whatthepatch',
- license=license,
+ license='MIT',
packages=['whatthepatch'],
+ include_package_data=True,
keywords=[
26
"patch",
27
"diff",
0 commit comments