how - Añadiendo ''install_requires'' a setup.py al hacer un paquete de python
python setup py options (2)
Necesita utilizar setuptools en lugar de distutils.
Cerca de la parte superior de la secuencia de comandos, intente reemplazar
from distutils.core import setup
con
from setuptools import setup
Para hacer un paquete de Python, en setup.py
, tengo lo siguiente:
setup(
name=''TowelStuff'',
version=''0.1.0'',
author=''J. Random Hacker'',
author_email=''[email protected]'',
packages=[''towelstuff'', ''towelstuff.test''],
scripts=[''bin/stowe-towels.py'',''bin/wash-towels.py''],
url=''http://pypi.python.org/pypi/TowelStuff/'',
license=''LICENSE.txt'',
description=''Useful towel-related stuff.'',
long_description=open(''README.txt'').read(),
install_requires=[
"Django >= 1.1.1",
"caldav == 0.1.4",
],
)
Así que rehice eso con mi propia descripción e información del paquete. Cuando lo construyo, recibo la siguiente advertencia:
distutils/dist.py:267: UserWarning: Unknown distribution option:
¿ install_requires
funciona solo en ciertas versiones?
try:
from setuptools import setup
except ImportError:
from distutils.core import setup