python-ox/setup.py

31 lines
762 B
Python
Raw Normal View History

2008-04-27 16:54:37 +00:00
#!/usr/bin/env python
2008-06-19 09:21:21 +00:00
# vi:si:et:sw=4:sts=4:ts=4
2008-04-27 16:54:37 +00:00
# encoding: utf-8
from setuptools import setup, find_packages
setup(
2008-07-03 09:23:42 +00:00
name="oxlib",
2008-06-19 09:21:21 +00:00
version="0.1",
2009-01-23 05:02:20 +00:00
description="python-oxlib some tools to build tools",
2008-06-19 09:21:21 +00:00
author="0x",
author_email="code@0xdb.org",
2008-07-03 09:23:42 +00:00
url="http://code.0xdb.org/oxlib",
download_url="http://code.0xdb.org/oxlib/download",
2008-06-19 09:21:21 +00:00
license="GPLv3",
packages=find_packages(),
zip_safe=False,
install_requires=[
'simplejson',
2008-06-19 09:21:21 +00:00
'chardet',
],
keywords = [
],
classifiers = [
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
2008-04-27 16:54:37 +00:00