chmarti1 / PYroMat

PYroMat thermodynamic properties in Python
http://pyromat.org
Other
71 stars 13 forks source link

[Review] Include `extra_requires` in setup.py #66

Closed fwitte closed 1 year ago

fwitte commented 1 year ago

Something like

...
    extras_require={
        'dev': [
            'pytest',
        ]
    },
...

is very useful in my opinion, so people can install pip install pyromat[dev] or pip install -e .[dev] if they want to have all requirements for the development process as well.