File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 28
28
"""
29
29
30
30
import os
31
+ import sys
31
32
32
33
try :
33
34
from setuptools import setup
37
38
# ------------------------------------------------------------------------------
38
39
39
40
# Module version
40
- __version_info__ = (0 , 4 , 0 )
41
+ __version_info__ = (0 , 4 , 0 , 1 )
41
42
__version__ = "." .join (str (x ) for x in __version_info__ )
42
43
43
44
# Documentation strings format
@@ -67,6 +68,7 @@ def read(fname):
67
68
url = "https://github.com/tcalmant/python-javaobj" ,
68
69
description = "Module for serializing and de-serializing Java objects." ,
69
70
license = "Apache License 2.0" ,
71
+ license_file = "LICENSE" ,
70
72
keywords = "python java marshalling serialization" ,
71
73
packages = ["javaobj" , "javaobj.v1" , "javaobj.v2" ],
72
74
test_suite = "tests.tests" ,
You can’t perform that action at this time.
0 commit comments