File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ import os
2+ from setuptools import setup
3+
4+ setup (
5+ name = "javaobj" ,
6+ version = "0.1.0" ,
7+ author = "Volodymyr Buell" ,
8+ author_email = "vbuell@gmail.com" ,
9+ url = "http://code.google.com/p/python-javaobj" ,
10+ description = ("Module for serializing and de-serializing Java objects." ),
11+ license = "APL2" ,
12+ keywords = "python java marshalling serialization" ,
13+ # packages=['javaobj'],
14+ long_description = "Provides functions for reading and writing (writing is WIP currently) " \
15+ "Java objects serialized or will be deserialized by ObjectOutputStream. " \
16+ "This form of object representation is a standard data interchange format " \
17+ "in Java world. javaobj module exposes an API familiar to users of the " \
18+ "standard library marshal, pickle and json modules." ,
19+ classifiers = [
20+ "Development Status :: 3 - Alpha" ,
21+ "License :: OSI Approved :: Apache Software License" ,
22+ "Topic :: Software Development :: Libraries :: Python Modules" ,
23+ ],
24+ )
You can’t perform that action at this time.
0 commit comments