python-oxlib/setup.py

31 lines
745 B
Python
Raw Normal View History

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