pycdt icon indicating copy to clipboard operation
pycdt copied to clipboard

Missing ',' in setup.py

Open utksi opened this issue 2 years ago • 1 comments

>python setup.py install
>error in pycdt setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier)
    matplotlib>=3.1monty>=3.0.2
              ~~~~~^

Seems that on line 16 in 'setup.py' a separator is missing between "matplotlib>=3.1" and "monty>=3.0.2". Adding one fixes the above error.

install_requires=["numpy>=1.18.15", "pymatgen>=2020.6.8,<=2022.7.8", "matplotlib>=3.1""monty>=3.0.2"]

utksi avatar Mar 15 '23 12:03 utksi