pycdt
pycdt copied to clipboard
Missing ',' in setup.py
>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"]