Skip to content

Commit a6d89b7

Browse files
author
vbuell
committed
setup.py added
1 parent 767c84c commit a6d89b7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
)

0 commit comments

Comments
 (0)