pythonprofilers / memory_profiler

Monitor Memory usage of Python code
http://pypi.python.org/pypi/memory_profiler
Other
4.39k stars 380 forks source link

Convert setup.py to setup.cfg #349

Closed mwtoews closed 2 years ago

mwtoews commented 2 years ago

Refer to setuptools' declarative configuration page for moving the static metadata into setup.cfg.

To build:

$ pip install --upgrade build
...
$ python -m build
...
Successfully built memory_profiler-0.59.0.tar.gz and memory_profiler-0.59.0-py3-none-any.whl

both .tar.gz and .whl files should be uploaded to PyPI.

A few other notes:

fabianp commented 2 years ago

looks good to me, thanks!