With 2.0.1, and setuptools 34.0.2, errors happen like:
File "/edx/app/edxapp/venvs/edxapp-sandbox/local/lib/python2.7/site-packages/packaging/requirements.py", line 59, in <module>
MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker")
TypeError: __call__() takes exactly 2 arguments (1 given)
(cherry picked from commit 73519b3547359a0b791e39d4665f51ac66449a17)
14 lines
230 B
Python
14 lines
230 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="chem",
|
|
version="0.1.1",
|
|
packages=["chem"],
|
|
install_requires=[
|
|
"pyparsing==2.0.7",
|
|
"numpy==1.6.2",
|
|
"scipy==0.14.0",
|
|
"nltk==2.0.6",
|
|
],
|
|
)
|