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 2828"""
2929
3030import os
31+ import sys
3132
3233try :
3334 from setuptools import setup
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" ,
You can’t perform that action at this time.
0 commit comments