Skip to content

Commit 93b72d7

Browse files
committed
Added a manifest.in file
See #36 Also added a small version bump as it is a metadata-only change
1 parent cfaecf6 commit 93b72d7

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

manifest.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Include the README
2+
include README.rst
3+
4+
# Include the authors file
5+
include AUTHORS
6+
7+
# Include the license file
8+
include LICENSE

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"""
2929

3030
import os
31+
import sys
3132

3233
try:
3334
from setuptools import setup
@@ -37,7 +38,7 @@
3738
# ------------------------------------------------------------------------------
3839

3940
# Module version
40-
__version_info__ = (0, 4, 0)
41+
__version_info__ = (0, 4, 0, 1)
4142
__version__ = ".".join(str(x) for x in __version_info__)
4243

4344
# Documentation strings format
@@ -67,6 +68,7 @@ def read(fname):
6768
url="https://github.com/tcalmant/python-javaobj",
6869
description="Module for serializing and de-serializing Java objects.",
6970
license="Apache License 2.0",
71+
license_file="LICENSE",
7072
keywords="python java marshalling serialization",
7173
packages=["javaobj", "javaobj.v1", "javaobj.v2"],
7274
test_suite="tests.tests",

0 commit comments

Comments
 (0)