diff --git a/oxlib/__init__.py b/ox/__init__.py similarity index 92% rename from oxlib/__init__.py rename to ox/__init__.py index 9d39994..18e15ac 100644 --- a/oxlib/__init__.py +++ b/ox/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # vi:si:et:sw=4:sts=4:ts=4 # GPL 2008 +__version__ = '1.0.0' from file import * from format import * diff --git a/oxlib/bencode.py b/ox/bencode.py similarity index 100% rename from oxlib/bencode.py rename to ox/bencode.py diff --git a/oxlib/cache.py b/ox/cache.py similarity index 100% rename from oxlib/cache.py rename to ox/cache.py diff --git a/oxlib/file.py b/ox/file.py similarity index 100% rename from oxlib/file.py rename to ox/file.py diff --git a/oxlib/format.py b/ox/format.py similarity index 100% rename from oxlib/format.py rename to ox/format.py diff --git a/oxlib/html.py b/ox/html.py similarity index 100% rename from oxlib/html.py rename to ox/html.py diff --git a/oxlib/iso.py b/ox/iso.py similarity index 100% rename from oxlib/iso.py rename to ox/iso.py diff --git a/oxlib/net.py b/ox/net.py similarity index 100% rename from oxlib/net.py rename to ox/net.py diff --git a/oxlib/normalize.py b/ox/normalize.py similarity index 100% rename from oxlib/normalize.py rename to ox/normalize.py diff --git a/oxlib/text.py b/ox/text.py similarity index 100% rename from oxlib/text.py rename to ox/text.py diff --git a/oxlib/torrent.py b/ox/torrent.py similarity index 100% rename from oxlib/torrent.py rename to ox/torrent.py diff --git a/setup.py b/setup.py index 5f00134..84fdc48 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( url="http://code.0xdb.org/oxlib", download_url="http://code.0xdb.org/oxlib/download", license="GPLv3", - packages=['oxlib'], + packages=['ox'], zip_safe=False, keywords = [ ],