use setuptools, depend on chardet and feedparser
This commit is contained in:
parent
01c368d493
commit
0eeecabbd2
2 changed files with 6 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
|||
simplejson
|
||||
chardet
|
||||
feedparser
|
||||
|
|
6
setup.py
6
setup.py
|
@ -1,7 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
# encoding: utf-8
|
||||
from distutils.core import setup
|
||||
try:
|
||||
from setuptools import setup
|
||||
except:
|
||||
from distutils.core import setup
|
||||
|
||||
def get_bzr_version():
|
||||
import os
|
||||
|
@ -20,6 +23,7 @@ setup(
|
|||
download_url="http://code.0x2620.org/python-ox/download",
|
||||
license="GPLv3",
|
||||
packages=['ox', 'ox.torrent', 'ox.web'],
|
||||
install_requires=['chardet', 'feedparser'],
|
||||
keywords = [
|
||||
],
|
||||
classifiers = [
|
||||
|
|
Loading…
Reference in a new issue