Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b4c1002

Browse filesBrowse files
author
vbuell
committed
setup.py added
git-svn-id: http://python-javaobj.googlecode.com/svn/trunk@22 003243c8-0679-609b-391f-34f4f14b4f20
1 parent 19bd82c commit b4c1002
Copy full SHA for b4c1002

File tree

Expand file treeCollapse file tree

1 file changed

+24
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+24
-0
lines changed
Open diff view settings
Collapse file

‎setup.py‎

Copy file name to clipboard
+24Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.